curl --request PUT \
--url https://api.open.cx/teams/{teamId} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"is_support_enabled": true,
"support_office_hours_id": "<string>",
"support_assignment_strategy": "least-busy"
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Update an existing team
curl --request PUT \
--url https://api.open.cx/teams/{teamId} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"is_support_enabled": true,
"support_office_hours_id": "<string>",
"support_assignment_strategy": "least-busy"
}
'{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Was this page helpful?