Skip to main content
GET
/
teams
/
{teamId}
/
users
Get users in team
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
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

teamId
string
required

Response

Default Response

id
number
required
name
string
required
email
string
required
is_available
boolean
required
group_capacity
number | null
required
global_capacity
number
required