POST
/
teams
/
{teamId}
/
users
Add user to team
curl --request POST \
  --url https://api.open.cx/teams/{teamId}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "userId": 123,
  "groupId": "<string>"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

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

Path Parameters

teamId
string
required

Body

application/json

Response

201

Successfully added user to team