curl --request GET \
--url https://api.open.cx/teams/{teamId}/users \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"name": "<string>",
"email": "<string>",
"is_available": true,
"group_capacity": 123,
"global_capacity": 123
}
]Retrieve all users in a specific team, including their availability and chat capacity for routing.
curl --request GET \
--url https://api.open.cx/teams/{teamId}/users \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"name": "<string>",
"email": "<string>",
"is_available": true,
"group_capacity": 123,
"global_capacity": 123
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?