> ## Documentation Index
> Fetch the complete documentation index at: https://docs.telli.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove from Auto Dialer (Batch)

> Removes multiple contacts from the auto dialer queue. Limited to 50 contacts per request.



## OpenAPI

````yaml openapi.json POST /v1/remove-from-auto-dialer-batch
openapi: 3.0.3
info:
  title: telli API
  version: 1.0.0
  description: API documentation for telli's V1 endpoints
servers:
  - url: https://api.telli.com
security:
  - apiKey: []
paths:
  /v1/remove-from-auto-dialer-batch:
    post:
      summary: Remove from Auto Dialer Batch
      description: >-
        Removes multiple contacts from the auto dialer queue. Limited to 50
        contacts per request.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - contact_ids
              properties:
                contact_ids:
                  type: array
                  items:
                    type: string
                    format: uuid
                  description: >-
                    Array of telli contact IDs to remove from the auto dialer.
                    Maximum 50 contacts per request.
      responses:
        '200':
          description: List of statuses for each contact ID
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    contact_id:
                      type: string
                      format: uuid
                      description: The telli contact ID
                    status:
                      type: string
                      enum:
                        - success
                        - error
                      description: Status of the removal operation
                    error:
                      type: string
                      description: Error message (only present for failed removals)
              example:
                - 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
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: 'API key must be provided as: Bearer <api_key>'
      x-bearer-format: Bearer

````