Skip to main content
POST
/
v1
/
remove-from-auto-dialer-batch
Remove from Auto Dialer Batch
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"
  }
]

Authorizations

Authorization
string
header
required

API key must be provided as: Bearer <api_key>

Body

application/json
contact_ids
string<uuid>[]
required

Array of telli contact IDs to remove from the auto dialer. Maximum 50 contacts per request.

Response

List of statuses for each contact ID

contact_id
string<uuid>

The telli contact ID

status
enum<string>

Status of the removal operation

Available options:
success,
error
error
string

Error message (only present for failed removals)

I