Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
Successfully added 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.
Add a user to an existing 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.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successfully added user to team
Was this page helpful?