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

# Contact List

> Retrieves a list of Twilio contact numbers with additional metadata such as nickname and status.



## OpenAPI

````yaml GET /twilio/contact/
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /twilio/contact/:
    get:
      summary: Get Twilio Contact Numbers
      description: >-
        Retrieves a list of Twilio contact numbers with additional metadata such
        as nickname and status.
      parameters:
        - name: Company-Name
          in: header
          required: true
          description: Schema name for multi-tenancy
          schema:
            type: string
      responses:
        '200':
          description: Twilio contact numbers retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TwilioContactListResponse'
        '400':
          description: Invalid request or missing parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    TwilioContactListResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        message:
          type: string
          example: contact data
        data:
          type: array
          description: List of Twilio contact numbers
          items:
            type: object
            properties:
              pk:
                type: integer
                description: Primary key or unique ID of the contact
                example: 60
              phone_number:
                type: string
                description: The Twilio phone number
              nickname:
                type: string
                description: A friendly name or label for the number
                example: test
              source_of_origin:
                type:
                  - string
                  - 'null'
                description: Where the contact originated from
                example: null
              phone_number_sid:
                type:
                  - string
                  - 'null'
                description: The Twilio SID associated with the number
                example: null
              verification_status:
                type:
                  - string
                  - 'null'
                description: Verification status of the number
                example: null
              in_used_by_agent:
                type: string
                description: Agent currently using this number (if any)
                example: none
    Error:
      required:
        - success
        - message
        - data
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````