POST
/
api
/
v1
/
accounts
/
{account_id}
/
teams
curl --request POST \
  --url https://app.chatwoot.com/api/v1/accounts/{account_id}/teams \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "allow_auto_assign": true
}'
{
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "allow_auto_assign": true,
  "account_id": 123,
  "is_member": true
}

Path Parameters

account_id
integer
required

The numeric ID of the account

Body

application/json

Response

200
application/json
Success

The response is of type object.