Skip to main content
DELETE
/
v1
/
contact-lists
/
{contact_list_id}
/
contacts
Delete contacts from a contact list
curl --request DELETE \
  --url https://api.openmic.ai/v1/contact-lists/{contact_list_id}/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contact_ids": [
    123
  ]
}
'

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header as: Authorization: Bearer <your-api-key>

Path Parameters

contact_list_id
integer
required

Body

application/json
contact_ids
integer[]
required

Array of contact IDs to delete.

Response

Contacts deleted