Create a team
POST
/api/v1/accounts/{account_id}/teams
Teams
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/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
integerÂ
required
Body Params application/json; charset=utf-8