> ## 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 SIDs only



## OpenAPI

````yaml get /agency/twilio/campaign-sids
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/campaign-sids:
    get:
      tags:
        - Twilio
      summary: Get A2P campaign SIDs only
      operationId: TwilioController_getCampaignSids
      parameters:
        - 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 SIDs with basic information
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        sid:
                          type: string
                          description: Campaign SID
                        campaign_id:
                          type: string
                          description: Campaign ID
                        campaign_status:
                          type: string
                          description: Campaign status (PENDING, APPROVED, etc.)
                        messaging_service_sid:
                          type: string
                          description: Messaging Service SID
                        messaging_service_friendly_name:
                          type: string
                          description: Messaging Service friendly name
                        date_created:
                          type: string
                          description: Creation date
                        date_updated:
                          type: string
                          description: Last update date
                  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

````