Delete a Contact

DELETE https://api.chartmogul.com/v1/contacts/{CONTACT_UUID}

Deletes the specified contact object and all associated data.

curl -X DELETE "https://api.chartmogul.com/v1/contacts/con_d018335c-56d2-11ee-897c-830bb2bba6ec" \
     -u YOUR_API_KEY: \
ChartMogul::Contact.retrieve("con_d018335c-56d2-11ee-897c-830bb2bba6ec").destroy!
ChartMogul.Contact.destroy(config, "con_d018335c-56d2-11ee-897c-830bb2bba6ec");
ChartMogul\Contact::retrieve("con_d018335c-56d2-11ee-897c-830bb2bba6ec")->destroy();
api.DeleteContact("con_d018335c-56d2-11ee-897c-830bb2bba6ec")
chartmogul.Contact.destroy(config, uuid="con_d018335c-56d2-11ee-897c-830bb2bba6ec")
{}
true
{}
true
nil
None

Body parameters

contact_uuid string required
The ChartMogul UUID of the contact you're deleting

Impact of this action. Deleting a contact is permanent and cannot be undone. All details associated with this contact will be lost.