Skip to main content
DELETE
/
contacts
/
{contactId}
Delete a contact by ID
curl --request DELETE \
  --url https://incoming.qomon.app/contacts/{contactId} \
  --header 'Authorization: Bearer <token>'
{
  "detail": "<string>",
  "errors": [
    {
      "location": "<string>",
      "message": "<string>",
      "value": "<unknown>"
    }
  ],
  "instance": "<string>",
  "status": 123,
  "title": "<string>",
  "type": "about:blank"
}

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

contactId
integer<int64>
required

Contact ID.

Required range: x >= 0
Example:

42

Response

No Content

Last modified on June 16, 2026