Skip to main content
DELETE
/
contacts
/
{id}
Delete a contact
curl --request DELETE \
  --url https://{domain}/api/site/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": ""
}

Authorizations

Authorization
string
header
required

Pass your API key as: Authorization: Bearer <API KEY>.

Path Parameters

id
integer
required

The id of the contact.

Example:

123

Response

200 - application/json

The operation succeeded.

success
boolean
required
Example:

true

message
string
required
Example:

""

Last modified on June 20, 2026