> ## 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 Call Groups

> List call groups for a tenant with optional pagination, sorting, and search



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/call-groups/
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-groups/:
    get:
      tags:
        - Call Groups
      summary: List Call Groups
      description: >-
        List call groups for a tenant with optional pagination, sorting, and
        search
      parameters:
        - schema:
            default: 1
            type: integer
            minimum: 0
            maximum: 1
          in: query
          name: paginated
          required: false
          description: 1 = paginated response, 0 = full list
        - schema:
            type: number
          in: query
          name: page
          required: false
          description: Page number
        - schema:
            type: number
          in: query
          name: recordsPerPage
          required: false
          description: Records per page
        - schema:
            type: string
            maxLength: 50
          in: query
          name: sortBy
          required: false
          description: Sort column
        - schema:
            type: string
            enum:
              - asc
              - desc
          in: query
          name: sortDirection
          required: false
          description: Sort direction
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: tenantId
          required: true
        - schema:
            type: string
          in: query
          name: query
          required: false
          description: Search by name or number
      responses:
        '200':
          description: Paginated call groups
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Call group ID
                        tenantId:
                          type: number
                          description: Tenant ID
                        name:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Call group name
                        number:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Call group number
                        branchId:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Branch ID
                        branchName:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Branch name
                        enableMusicOnHold:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Music on hold state
                        checkInUse:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Check-in-use state
                        checkOffline:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Check-offline state
                        ringStrategy:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Ring strategy
                        ringTime:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Ring time (seconds)
                        dialTimeout:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Dial timeout (seconds)
                        enableForwarding:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Forwarding state
                      required:
                        - id
                        - tenantId
                        - name
                        - number
                        - branchId
                        - branchName
                        - enableMusicOnHold
                        - checkInUse
                        - checkOffline
                        - ringStrategy
                        - ringTime
                        - dialTimeout
                        - enableForwarding
                      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

````