cURL
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 ] } '
Remove one or more contacts by providing their IDs in the request body.
API key authentication. Include your API key in the Authorization header as: Authorization: Bearer <your-api-key>
Authorization: Bearer <your-api-key>
Array of contact IDs to delete.
Contacts deleted
Was this page helpful?