Delete (DELETE) Contact

Use this API to delete a single contact from the Contacts hub.

To delete a contact:

Execute a DELETE command on the endpoint {{url}}/contact/<ID>, where ID is the ID of the contact you want to delete.

For example, here is a request, using cURL, to delete contact ID ADMIN1013718587810.

curl --request DELETE \
  --url 'https://{{url}}/contact/ADMIN1013718587810' \
  --header 'authorization: Bearer {{oauth_token}}' \
  --header 'content-type: application/json'
A successful DELETE returns the status code 200 OK.