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

# Unassign a fax from a user

> Remove a fax assignment from one or more workspace users.

Provide the required fax identifier in `job_id` and workspace-user email addresses in the required `emails` field. You can unassign multiple users in the same API call. Authenticate with a Bearer access token.


## OpenAPI

````yaml POST /v1/faxes/unassign
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/unassign:
    post:
      tags:
        - Manage Faxes
      summary: Unassign a fax from a user
      description: >-
        Removes a fax assignment from one or more workspace users by email
        address.
      operationId: postv1FaxesUnassign
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              required:
                - job_id
                - emails
              properties:
                job_id:
                  type: string
                  description: Unique identifier of the fax to unassign.
                emails:
                  type: array
                  description: >-
                    Email addresses of the workspace users whose assignments are
                    removed. Multiple users are unassigned in the same API call.
                  items:
                    type: string
                    format: email
            example:
              job_id: 01KKXJYK63GH7CX01FFJZ7M61N
              emails:
                - web55@moontechnolabs.com
      responses:
        '200':
          description: The fax was unassigned successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: integer
                  message:
                    type: string
              example:
                status: 1
                message: The fax unassigned successfully.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````