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

# List scheduled faxes

> Retrieve faxes scheduled for future transmission.

Retrieve scheduled faxes for the authenticated account. Use `limit` and `cursor` to page through the results.

Each scheduled fax includes its `job_id`, sending and receiving numbers, page count, creation time, and scheduled transmission time. The current API returns `created_at` and `scheduled_time` as Unix timestamps.

When the list is empty, the response contains `status`, `message`, and `meta`, and omits the `data` property.


## OpenAPI

````yaml GET /v1/faxes/schedule
openapi: 3.1.0
info:
  title: Amplify Customer API
  version: 1.0.0
  description: |-
    Canonical contract for the Amplify customer-facing API. This YAML file is
    the source of truth for Postman and Mintlify. Operations marked with
    x-amplify-validation-status: pending were migrated from the legacy Postman
    collection and must be validated before their contract is considered final.
servers:
  - url: https://api.amplify.xyz
    description: Production
  - url: https://dev-api.amplify.xyz
    description: Development
security: []
tags:
  - name: Authentication
  - name: Fax
  - name: Send Faxes
  - name: Receive Faxes
  - name: Manage Faxes
  - name: Workspace
  - name: Numbers
  - name: Contacts
  - name: Documents
  - name: Templates
paths:
  /v1/faxes/schedule:
    get:
      tags:
        - Send Faxes
      summary: List scheduled faxes
      description: >-
        Returns faxes scheduled for future transmission in the authenticated
        account.
      operationId: getv1FaxesSchedule
      parameters:
        - name: limit
          in: query
          required: false
          description: Maximum number of scheduled faxes to return.
          schema:
            type: integer
          example: 10
        - name: cursor
          in: query
          required: false
          description: Cursor used to request another page of results.
          schema:
            type: string
      responses:
        '200':
          description: Scheduled fax list retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                  - meta
                properties:
                  status:
                    type: integer
                  message:
                    type: string
                  data:
                    type: array
                    description: Omitted when no scheduled faxes are returned.
                    items:
                      type: object
                      properties:
                        job_id:
                          type: string
                        sender_number:
                          type: string
                        receiver_number:
                          type: string
                        pages:
                          type: integer
                        created_at:
                          type: integer
                          description: >-
                            Unix timestamp returned by the current API
                            implementation.
                        scheduled_time:
                          type: integer
                          description: >-
                            Unix timestamp returned by the current API
                            implementation.
                  meta:
                    type: object
                    properties:
                      total:
                        type: integer
                      next_cursor:
                        type: string
                      previous_cursor:
                        type: string
                      limit:
                        type: integer
              example:
                status: 1
                message: ScheduleFax list retrieved successfully
                data:
                  - job_id: 01M1P48369SWFXQ84A789JED9V
                    sender_number: '+19073131400'
                    receiver_number: '+14084132233'
                    pages: 1
                    created_at: 1788522794
                    scheduled_time: 1791279720
                meta:
                  total: 1
                  next_cursor: ''
                  previous_cursor: ''
                  limit: 20
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````