> ## 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 Fax Extensions

> List fax extensions for a tenant with optional pagination, sorting, and search



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/extensions/fax/
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/extensions/fax/:
    get:
      tags:
        - Extensions
      summary: List Fax Extensions
      description: >-
        List fax extensions 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
          in: query
          name: query
          required: false
          description: Search by name, number, caller ID number, or email
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: tenantId
          required: true
          description: Tenant ID to list extensions for
      responses:
        '200':
          description: Paginated extension list
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Extension ID
                        tenantId:
                          type: number
                          description: Tenant ID
                        userId:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Linked user ID
                        name:
                          type: string
                          description: Extension name
                        number:
                          type: string
                          description: Extension number
                        peerName:
                          type: string
                          description: SIP peer name
                        dnd:
                          type: string
                          description: Do not disturb state
                        callerIdNumber:
                          type: string
                          description: Outbound caller ID number
                        enableMeet:
                          type: number
                          description: Meet enabled (1 = yes, 0 = no)
                        enableTranscription:
                          type: number
                          description: Transcription enabled (1 = yes, 0 = no)
                        type:
                          type: string
                          description: Extension type (routing profile type or Voice)
                        trunk:
                          type: string
                          description: Trunk state
                        enableForwarding:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Forwarding state
                        email:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Extension email
                      required:
                        - id
                        - tenantId
                        - userId
                        - name
                        - number
                        - peerName
                        - dnd
                        - callerIdNumber
                        - enableMeet
                        - enableTranscription
                        - type
                        - trunk
                        - enableForwarding
                        - email
                      additionalProperties: false
                  page:
                    type: number
                  maxPage:
                    type: number
                  totalRecords:
                    type: number
                required:
                  - records
                  - page
                  - maxPage
                  - totalRecords
                additionalProperties: false
        '400':
          description: Error response
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                  message:
                    type: string
                  code:
                    type: number
                  validationErrors:
                    type: array
                    items:
                      type: string
                required:
                  - name
                  - message
                  - code
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````