DELETE

Delete Contact List Contact

Deletes a specific contact from a contact list. This action is permanent and cannot be undone.

Endpoint

DELETE v5/contactlist/{list_id}/contactlistcontact/{contact_id}

Requires authentication

Path Parameters

Identifies the contact list and specific contact to delete.

list_id
string
required
The ID of the contact list.
contact_id
string
required
The ID of the contact to delete.

Response

Returns a status object confirming the deletion.

result_ok
boolean
Whether the request succeeded.

Examples

Request (cURL)
curl -X DELETE "https://api.alchemer.com/v5/contactlist/YOUR_LIST_ID/contactlistcontact/YOUR_CONTACT_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true
}