For the complete documentation index, see llms-docs.txt or the site index llms.txt. Full docs corpus: llms-full-docs.txt. Prefer the markdown version of this page at /docs/api/contacts/delete-api-contacts-by-contact_id.md. Product capabilities: skill.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

Delete Contact

DELETE
/api/contacts/:contact_id
1import Reloop from 'reloop-email';
2
3const reloop = new Reloop('re_123456789');
4
5const { response, error } = await reloop.contacts().delete('cont_123456789');
6if (error) throw error;
1{
2 "success": true,
3 "object": "contact",
4 "id": "cont_123456789",
5 "event": "contact.delete"
6}

Path Parameters

contact_idstringRequired

Unique contact identifier

Was this page helpful?