Skip to main content
DELETE
/
contacts
/
{id}
Delete Contact
curl --request DELETE \
  --url https://api.unosend.co/contacts/{id} \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.unosend.co/llms.txt

Use this file to discover all available pages before exploring further.

id
string
required
The ID of the contact.

Request

curl -X DELETE https://api.unosend.co/contacts/con_123 \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "success": true,
  "data": {
    "id": "con_123"
  }
}