> ## 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 Faxes

> List faxes for a tenant with pagination, sorting, search, and optional workflow-status stats



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/faxes/
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/faxes/:
    get:
      tags:
        - Faxes
      summary: List Faxes
      description: >-
        List faxes for a tenant with pagination, sorting, search, and optional
        workflow-status stats
      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 source number, destination number, or sender name
        - schema:
            type: string
            enum:
              - IN
              - OUT
          in: query
          name: direction
          required: false
        - schema:
            type: string
          in: query
          name: startDate
          required: false
          description: ISO start date filter
        - schema:
            type: string
          in: query
          name: endDate
          required: false
          description: ISO end date filter
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: tenantId
          required: true
          description: Tenant ID to list faxes for
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: branchId
          required: false
          description: Filter to a branch
      responses:
        '200':
          description: Paginated fax list
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        tenantId:
                          type: number
                        sourceNum:
                          type: string
                        sourceName:
                          type: string
                        destNum:
                          type: string
                        remoteId:
                          type: string
                        direction:
                          type: string
                        date:
                          type: string
                          description: Fax date (ISO 8601)
                        pages:
                          type: number
                        status:
                          type: string
                        error:
                          type: string
                        statusEmail:
                          type: string
                        attempt:
                          type: number
                        branchId:
                          type: number
                      required:
                        - id
                        - tenantId
                        - sourceNum
                        - sourceName
                        - destNum
                        - remoteId
                        - direction
                        - date
                        - pages
                        - status
                        - error
                        - statusEmail
                        - attempt
                        - branchId
                      additionalProperties: false
                      description: Fax record
                  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

````