Skip to content
Get started
V2 Reference
Contacts

Delete Contact

DELETE
/api/partner/v2/contacts/{id}
curl --request DELETE \
--url https://api.linqapp.com/api/partner/v2/contacts/1 \
--header 'X-LINQ-INTEGRATION-TOKEN: <X-LINQ-INTEGRATION-TOKEN>'

Deletes a contact and all associated user contacts. This action cannot be undone.

id
required
integer

The contact ID

Contact deleted successfully

Contact not found

Media type application/json

Alternative error format used by Contacts and Webhook Subscriptions endpoints (render_standard_error format)

object
status
string
error_code
string
message
string
errors
Array<string>
Example
{
"status": "error",
"error_code": "CONTACT_NOT_FOUND",
"message": "Contact not found",
"errors": [
"The requested contact does not exist or is not accessible to your organization"
]
}