Contacts
Delete a contact
Permanently delete a single contact by its ID. This removes the contact and all associated data including notes, reminders, and tag associations.
DELETE /v1/contacts/{contactId}
Parameters
Path parameters
contactId
string (uuid) required
Responses
200 — Successful response
Content-Type: application/json
error
boolean required
message
string required
Example
{
"error": false,
"message": "string"
}
400
No response body.
401
No response body.
403
No response body.
404
No response body.
429
No response body.
500
No response body.
Code samples
curl https://api.prod.getdex.com/v1/contacts/00000000-0000-0000-0000-000000000000 \
--request DELETE \
--header 'Authorization: Bearer YOUR_API_KEY'
fetch('https://api.prod.getdex.com/v1/contacts/00000000-0000-0000-0000-000000000000', {
method: 'DELETE',
headers: {
Authorization: 'Bearer YOUR_API_KEY'
}
})
requests.delete(
"https://api.prod.getdex.com/v1/contacts/00000000-0000-0000-0000-000000000000",
headers={
"Authorization": "Bearer YOUR_API_KEY"
}
)

