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

> List a tenant's paging groups with pagination, sorting, and name/number search



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/paging-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/paging-groups/:
    get:
      tags:
        - Paging Groups
      summary: List Paging Groups
      description: >-
        List a tenant's paging groups with pagination, sorting, and name/number
        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
          description: Tenant ID
        - schema:
            type: string
            maxLength: 50
          in: query
          name: query
          required: false
          description: Search by name or number
      responses:
        '200':
          description: Paginated paging group list
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Paging group ID
                        tenantId:
                          type: number
                          description: Tenant ID
                        number:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Paging group number
                        name:
                          type: string
                          description: Paging group name
                        checkInUse:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Check-in-use flag
                        twoWayAudio:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Two-way audio flag
                        introMessageMediaFileId:
                          type: number
                          description: Intro-message media file ID (0 = none)
                      required:
                        - id
                        - tenantId
                        - number
                        - name
                        - checkInUse
                        - twoWayAudio
                        - introMessageMediaFileId
                      additionalProperties: false
                      description: Paging group list item
                  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

````