Update a team
PATCH
/api/v1/accounts/{account_id}/teams/{team_id}
Teams
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/v1/accounts//teams/' \
--header 'Content-Type: application/json; charset=utf-8' \
--data-raw '{
"name": "string",
"description": "string",
"allow_auto_assign": true
}'
Response Response Example
200 - Example 1
{
"id": 0,
"name": "string",
"description": "string",
"allow_auto_assign": true,
"account_id": 0,
"is_member": true
}
Request
Path Params
account_id
stringÂ
required
team_id
stringÂ
required
Body Params application/json; charset=utf-8