curl --request POST \
--url https://api.open.cx/teams \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Support Team",
"description": "Team responsible for customer support",
"is_support_enabled": false
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Create a new team in the organization
curl --request POST \
--url https://api.open.cx/teams \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Support Team",
"description": "Team responsible for customer support",
"is_support_enabled": false
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully created team
Was this page helpful?