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

# Approve or reject a fax

> Approve or reject one or more pending fax requests.

Provide one or more pending fax identifiers in `job_id`. Set `type` to `approve` or `reject`. You may include a `comment` with the decision.


## OpenAPI

````yaml POST /v1/faxes/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/approval:
    post:
      tags:
        - Manage Faxes
      summary: Approve or reject a fax
      description: Approves or rejects one or more pending fax requests.
      operationId: postv1FaxesApproval
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              required:
                - job_id
                - type
              properties:
                job_id:
                  type: array
                  items:
                    type: string
                type:
                  type: string
                  description: Decision to apply to the pending fax request.
                  enum:
                    - approve
                    - reject
                comment:
                  type: string
            example:
              job_id:
                - 01KRJFN3NFSF1DZYSQTCEA9NBC
              type: reject
              comment: Not Need To send this for now
      responses:
        '200':
          description: The pending fax request was processed successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: integer
                  message:
                    type: string
              example:
                status: 1
                message: The fax request has been successfully approved.
        '400':
          description: The fax request has already been approved.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: integer
                  message:
                    type: string
              example:
                status: 0
                message: This fax has already been approved.
        '404':
          description: None of the supplied fax identifiers could be found.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: integer
                  message:
                    type: string
              example:
                status: 0
                message: No faxes found for the provided UUIDs.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````