cURL
curl --request POST \ --url https://api.telli.com/v1/remove-from-auto-dialer-batch \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "contact_ids": [ "3c90c3cc-0d44-4b50-8888-8dd25736052a" ] } '
[ { "contact_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "status": "success" }, { "contact_id": "invalid_contact_id", "status": "error", "error": "Invalid contact_id" }, { "contact_id": "c3d4e5f6-a7b8-9012-cdef-123456789012", "status": "success" }, { "contact_id": "d4e5f6a7-b8c9-0123-defg-h23456789012", "status": "error", "error": "Contact not found" } ]
Removes multiple contacts from the auto dialer queue. Limited to 50 contacts per request.
API key must be provided as: Bearer <api_key>
Array of telli contact IDs to remove from the auto dialer. Maximum 50 contacts per request.
List of statuses for each contact ID
The telli contact ID
Status of the removal operation
success
error
Error message (only present for failed removals)
Was this page helpful?