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

Documentation Index

Fetch the complete documentation index at: https://api.qomon.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<uint>
required

The ID of the team to delete.

Example:

1

Response

OK

status
string
Example:

"success"

data
object
Last modified on May 19, 2026