Skip to main content
DELETE
/
v1
/
audiences
/
{audienceId}
/
contacts
/
{id}
Delete Contact
curl --request DELETE \
  --url https://api.example.com/v1/audiences/{audienceId}/contacts/{id}
audienceId
string
required
The ID of the audience.
id
string
required
The ID of the contact.

Request

cURL
curl -X DELETE https://www.unosend.co/api/v1/audiences/aud_123/contacts/con_123 \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "id": "con_123",
  "deleted": true
}