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

# List Campaigns

> List call campaigns for a tenant with optional pagination and search



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/call-campaigns/
openapi: 3.1.0
info:
  title: VOXO API
  description: VOXO Communication Platform API
  version: 2.0.0
servers:
  - url: https://api.voxo.co
security:
  - bearerAuth: []
paths:
  /v2/admin/call-campaigns/:
    get:
      tags:
        - Call Campaigns
      summary: List Campaigns
      description: List call campaigns for a tenant with optional pagination and search
      parameters:
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: tenantId
          required: true
          description: Tenant ID
        - schema:
            type: string
          in: query
          name: query
          required: false
          description: Search filter by campaign name
        - schema:
            type: string
          in: query
          name: paginated
          required: false
          description: Enable pagination (1 = yes, 0 = no)
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: page
          required: false
          description: Page number
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: recordsPerPage
          required: false
          description: Number of records per page
      responses:
        '200':
          description: Campaign list
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Campaign ID
                        tenantId:
                          type: number
                          description: Tenant ID
                        name:
                          type: string
                          description: Campaign name
                        type:
                          type: string
                          description: Campaign type
                        dateStart:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Start date
                        dateEnd:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: End date
                        callerId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Caller ID phone number
                        callDelay:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Delay between calls in ms
                        state:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Campaign state
                        lastrun:
                          anyOf:
                            - type: string
                              format: date-time
                            - type: 'null'
                          description: Last run timestamp
                        dialtimeout:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Dial timeout in seconds
                        tech:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Technology type
                        message:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Campaign message
                        timeStart:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Start time
                        timeEnd:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: End time
                        timezone:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: IANA timezone
                        callFrequency:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Call frequency in seconds
                        callHoursStart:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Calling hours start
                        callHoursEnd:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Calling hours end
                        recording:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Recording enabled (yes/no)
                      required:
                        - id
                        - tenantId
                        - name
                        - type
                        - dateStart
                        - dateEnd
                        - callerId
                        - callDelay
                        - state
                        - lastrun
                        - dialtimeout
                        - tech
                        - message
                        - timeStart
                        - timeEnd
                        - timezone
                        - callFrequency
                        - callHoursStart
                        - callHoursEnd
                        - recording
                      additionalProperties: false
                  page:
                    type: number
                  maxPage:
                    type: number
                  totalRecords:
                    type: number
                required:
                  - records
                  - page
                  - maxPage
                  - totalRecords
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````