List (minimal)

This endpoint will retrieve the list of all the team members associated to a specific bot but in a simplified appearance.

Request

The following request will publish a chatbot on the currently active channels

curl --location --request GET 'https://<SERVICE ENDPOINT>/teams/minimal' \
--header 'Authorization: Bearer <BOT_AUTH_TOKEN>' \
--header 'Content-Type: application/json'

Response

If successful, the response will contain the list of all the team members associated with bot specified in the request token.

[
    {
        "OperatorId": "The ID of the Team Member",
        "Name": "The User Full Name",
        "Group": "GROUP_NAME",
        "Email":"[email protected]"
    }
]

Response Codes

This endpoint will reply with the following standard HTTP codes.

Code

Meaning

200

Ok. The request has been successfully fulfilled.

400

Bad Request. The supplied token is invalid or does not have enough permissions.

401

Unauthorized. The account associated to the token is not authorized

404

Not Found. The account or the chatbot specified could not be found.

Last updated

Was this helpful?