Delete Contact

DELETE
https://reloop.sh/api/contacts/:contact_id

Path Parameters

contact_idstringRequired

Unique contact identifier

import Reloop from 'reloop-email';

const reloop = new Reloop('re_123456789');

const { response, error } = await reloop.contacts().delete('cont_123456789');
if (error) throw error;
{
  "success": true,
  "object": "contact",
  "id": "cont_123456789",
  "event": "contact.delete"
}

Was this page helpful?

Edit this page