curl --request POST \
--url https://api.open.cx/teams/{teamId}/users \
--header 'Content-Type: application/json' \
--data '
{
"userId": 123,
"groupId": "<string>"
}
'{
"message": "<string>",
"user": {
"id": 123,
"name": "<string>",
"email": "<string>"
}
}Add a user to an existing team
curl --request POST \
--url https://api.open.cx/teams/{teamId}/users \
--header 'Content-Type: application/json' \
--data '
{
"userId": 123,
"groupId": "<string>"
}
'{
"message": "<string>",
"user": {
"id": 123,
"name": "<string>",
"email": "<string>"
}
}Was this page helpful?