cURL
curl --request DELETE \ --url https://your-instance.example.com/api/contacts/bulk-delete \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "contactIds": [ "<string>" ] } '
{ "message": "<string>", "deletedCount": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Bulk delete completed