> ## 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 pending fax approvals

> Retrieve faxes waiting for approval.

Retrieve pending fax approvals for the authenticated account. Use `limit` and `cursor` to page through results and `sort_by` to select the supported sort order.

Each pending fax includes its `job_id`, read state, direction, sender and receiver, page count, status, and creation and update times.

When there are no pending approvals, the API omits the `data` property.


## OpenAPI

````yaml POST /v1/faxes/pending-approval
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/pending-approval:
    post:
      tags:
        - Manage Faxes
      summary: List pending fax approvals
      description: Returns faxes waiting for approval in the authenticated account.
      operationId: postv1FaxesPendingApproval
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
          example: 10
        - name: cursor
          in: query
          required: false
          schema:
            type: string
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                sort_by:
                  type: string
            example:
              sort_by: Newest
      responses:
        '200':
          description: Pending fax approvals retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - meta
                properties:
                  status:
                    type: integer
                  message:
                    type: string
                    description: Omitted when no pending approvals are returned.
                  data:
                    type: array
                    description: Omitted when no pending approvals are returned.
                    items:
                      type: object
                      required:
                        - job_id
                        - fax_type
                        - sender
                        - receiver
                        - pages
                        - fax_status
                        - created_at
                        - updated_at
                      properties:
                        job_id:
                          type: string
                        is_read:
                          type: boolean
                        fax_type:
                          type: string
                        sender:
                          type: string
                        receiver:
                          type: string
                        pages:
                          type: integer
                        fax_status:
                          type: string
                        created_at:
                          type: integer
                          description: >-
                            Unix timestamp returned by the current API
                            implementation.
                        updated_at:
                          type: integer
                          description: >-
                            Unix timestamp returned by the current API
                            implementation.
                  meta:
                    type: object
                    required:
                      - total
                      - next_cursor
                      - previous_cursor
                      - limit
                    properties:
                      total:
                        type: integer
                      next_cursor:
                        type: string
                      previous_cursor:
                        type: string
                      limit:
                        type: integer
              examples:
                populated:
                  summary: Pending approval returned
                  value:
                    status: 1
                    message: Pending Approval Fax Rerive SuccessFully.
                    data:
                      - job_id: 01M1PEZPK67Z4RQ5Y82JZF3BCF
                        is_read: false
                        fax_type: outbound
                        sender: '+14084132233'
                        receiver: '+14084132233'
                        pages: 1
                        fax_status: pending_approval
                        created_at: 1788534052
                        updated_at: 1788534054
                    meta:
                      total: 1
                      next_cursor: ''
                      previous_cursor: ''
                      limit: 20
                empty:
                  summary: No pending approvals
                  value:
                    status: 1
                    meta:
                      total: 0
                      next_cursor: ''
                      previous_cursor: ''
                      limit: 10
        '422':
          description: A request value failed validation.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: integer
                  message:
                    type: string
              example:
                status: 0
                message: The selected sort by is invalid.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````