Skip to main content
DELETE
/
contacts
/
{contactId}
curl -X DELETE \
  -H "X-API-KEY: your_api_key" \
  "https://www.gomry.com/api/v1/contacts/AbCdEfGhIjKlMnOpQrSt"
// No response body

Delete Contact

Soft-deletes a contact by setting its status to deleted. The contact will no longer appear in list queries or be retrievable by ID. This operation is not reversible through the API. Contact Gomry support if you need to restore a deleted contact.

Path Parameters

contactId
string
required
The unique identifier of the contact to delete.

Response

Returns 204 No Content on success with an empty body.
curl -X DELETE \
  -H "X-API-KEY: your_api_key" \
  "https://www.gomry.com/api/v1/contacts/AbCdEfGhIjKlMnOpQrSt"
// No response body