Skip to main content
DELETE
/
teams
/
{id}
Delete a team
curl --request DELETE \
  --url https://incoming.qomon.app/teams/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "message": "<string>",
    "team_id": 1
  },
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Path Parameters

id
integer<int64>
required

Team ID.

Required range: x >= 0
Example:

1

Response

OK

data
object
required
status
string
required

Operation result.

Example:

"success"

Last modified on June 16, 2026