> ## 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 sent faxes

> Retrieve sent fax jobs and their current transmission results.

Returns sent faxes for the authenticated account. Each record includes its `job_id`, sender and receiver, page counts, current status, and transmission time.

The response includes cursor pagination metadata. Additional request-side pagination controls have not yet been confirmed.


## OpenAPI

````yaml POST /v1/faxes/lists
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/lists:
    post:
      tags:
        - Send Faxes
      summary: List sent faxes
      description: >-
        Returns sent fax jobs in the authenticated account, including their
        transmission status, page counts, and cursor metadata.
      operationId: listSentFaxes
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                sort_by:
                  type: string
                  description: >-
                    Sort order for the returned faxes. Newest is the confirmed
                    value.
            example:
              sort_by: Newest
      responses:
        '200':
          description: Sent fax list retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SentFaxListResponse'
              example:
                status: 1
                message: SentFax list retrieved successfully
                data:
                  - id: 150004099
                    job_id: 01M1NSAPE73ZJTEGEZQMHC8P6P
                    sender: '+19073131400'
                    receiver: '+14084132233'
                    duration: ''
                    pages: 1
                    fax_status: Delivered
                    sent_fax_time: 1788511347
                    source: fax
                    sent_pages: 1
                    failed_pages: 0
                meta:
                  total: 17
                  next_cursor: ''
                  previous_cursor: ''
                  limit: 20
        '500':
          description: The server could not process the supplied request value.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
              example:
                status: 0
                message: Internal Server Error
      security:
        - bearerAuth: []
components:
  schemas:
    SentFaxListResponse:
      type: object
      required:
        - status
        - message
        - data
        - meta
      properties:
        status:
          type: integer
          const: 1
        message:
          type: string
          const: SentFax list retrieved successfully
        data:
          type: array
          items:
            $ref: '#/components/schemas/SentFaxListItem'
        meta:
          $ref: '#/components/schemas/CursorPaginationMeta'
    InternalServerErrorResponse:
      type: object
      additionalProperties: false
      required:
        - status
        - message
      properties:
        status:
          type: integer
          const: 0
        message:
          type: string
          const: Internal Server Error
    SentFaxListItem:
      type: object
      required:
        - id
        - job_id
        - sender
        - receiver
        - duration
        - pages
        - fax_status
        - sent_fax_time
        - source
      properties:
        id:
          type: integer
          description: Internal numeric identifier for the fax record.
        job_id:
          type: string
          description: Public identifier for the fax job.
        sender:
          type: string
          description: Sending fax number in E.164 format.
        receiver:
          type: string
          description: Destination fax number in E.164 format.
        duration:
          type: string
          description: Transmission duration as returned by the service.
        pages:
          type: integer
          description: Total number of pages in the fax.
        fax_status:
          type: string
          description: Current fax status.
        sent_fax_time:
          type: integer
          description: Sent time represented as a Unix timestamp.
        source:
          type: string
          description: Source that created the fax.
        sent_pages:
          type: integer
          description: >-
            Number of pages sent successfully. This field may be absent for
            pending faxes.
        failed_pages:
          type: integer
          description: >-
            Number of pages that failed. This field may be absent for pending
            faxes.
    CursorPaginationMeta:
      type: object
      required:
        - total
        - next_cursor
        - previous_cursor
        - limit
      properties:
        total:
          type: integer
          description: Total number of matching records.
        next_cursor:
          type: string
          description: Cursor for the next page, or an empty string when unavailable.
        previous_cursor:
          type: string
          description: Cursor for the previous page, or an empty string when unavailable.
        limit:
          type: integer
          description: Maximum records returned in this response.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````