Skip to main content
DELETE
/
h
/
v2
/
contact-lists
/
{contact_list_id}
/
contacts
Delete contacts from a list
curl --request DELETE \
  --url https://api.openmic.ai/h/v2/contact-lists/{contact_list_id}/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contact_ids": [
    101,
    102,
    103
  ]
}
'
{
  "error": "<string>",
  "details": "<string>"
}

Authorizations

Authorization
string
header
required

API key obtained from the OpenMic dashboard.

Path Parameters

contact_list_id
integer
required

Body

application/json
contact_ids
integer[]
required
Minimum array length: 1
Required range: x >= 1

Response

Contacts deleted.