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

# Get A2P campaign registered numbers



## OpenAPI

````yaml get /agency/twilio/a2p-campaign-numbers
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /agency/twilio/a2p-campaign-numbers:
    get:
      tags:
        - Twilio
      summary: Get A2P campaign registered numbers
      operationId: TwilioController_getA2PCampaignNumbers
      parameters:
        - name: campaignSid
          required: false
          in: query
          schema:
            type: string
        - name: status
          required: false
          in: query
          schema:
            type: string
        - name: page
          required: false
          in: query
          schema:
            type: number
        - name: limit
          required: false
          in: query
          schema:
            type: number
      responses:
        '200':
          description: Returns A2P campaign registered numbers with pagination
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        sid:
                          type: string
                          description: Campaign SID
                        account_sid:
                          type: string
                          description: Account SID
                        messaging_service_sid:
                          type: string
                          description: Messaging Service SID
                        messaging_service_friendly_name:
                          type: string
                          description: Messaging Service friendly name
                        brand_registration_sid:
                          type: string
                          description: Brand registration SID
                        campaign_id:
                          type: string
                          description: Campaign ID
                        campaign_status:
                          type: string
                          description: Campaign status (PENDING, APPROVED, etc.)
                        opt_in_message:
                          type: string
                          description: Opt-in message
                        opt_out_message:
                          type: string
                          description: Opt-out message
                        help_message:
                          type: string
                          description: Help message
                        opt_in_keywords:
                          description: Opt-in keywords
                          type: array
                          items:
                            type: string
                        opt_out_keywords:
                          description: Opt-out keywords
                          type: array
                          items:
                            type: string
                        help_keywords:
                          description: Help keywords
                          type: array
                          items:
                            type: string
                        date_created:
                          type: string
                          description: Creation date
                        date_updated:
                          type: string
                          description: Last update date
                        url:
                          type: string
                          description: Resource URL
                  meta:
                    type: object
                    properties:
                      page:
                        type: number
                      pageSize:
                        type: number
                      totalPages:
                        type: number
                      total:
                        type: number
                      start:
                        type: number
                      end:
                        type: number
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````