Contacts
Delete Contact
Delete a contact from the organization
DELETE
This endpoint allows you to permanently delete a contact from your organization’s database. This action cannot be undone, so use it with caution.
Use Cases
- Remove obsolete or duplicate contact records
- Comply with data retention policies
- Honor user requests to delete their personal information
- Clean up your contact database
Path Parameters
The unique identifier of the contact to delete. This is a UUID string that was generated when the contact was created.
Headers
Your API key for authentication. You can find this in your dashboard under API settings.
Response
204 on success (No Content)
This endpoint returns a 204 No Content response on successful deletion, with no response body.
Error Codes
400 Bad Request
- Invalid contact ID format401 Unauthorized
- Invalid or missing API key404 Not Found
- Contact not found500 Internal Server Error
- Server-side error
Code Examples
Notes and Best Practices
- Always confirm with the user before permanently deleting a contact
- Consider implementing a “soft delete” in your application by flagging contacts as inactive instead of permanently deleting them
- Keep audit logs of deleted contacts for compliance purposes
- Ensure you have proper error handling for failed deletion attempts
- If you’re deleting contacts as part of a bulk operation, implement rate limiting to avoid API throttling