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

# Remove a label from a fax

> Remove labels from a fax.

Provide the required fax identifier in `job_id` and the required numeric label identifiers in `label_ids`. Obtain label identifiers from [List labels](/api-reference/customer-v1/fax-labels/get-labels-list.mdx). Authenticate with a Bearer access token.


## OpenAPI

````yaml POST /v1/labels/remove
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/labels/remove:
    post:
      tags:
        - Workspace
      summary: Remove a label from a fax
      description: Removes one or more labels from a fax.
      operationId: postv1LabelsRemove
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              required:
                - job_id
                - label_ids
              properties:
                job_id:
                  type: string
                  description: Unique identifier of the fax whose labels are removed.
                label_ids:
                  type: array
                  description: Numeric identifiers of the labels to remove.
                  items:
                    type: integer
            example:
              job_id: 01M0FAT727W7PX5RFT6FH2ARY2
              label_ids:
                - 1998
      responses:
        '200':
          description: The fax labels were removed successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: integer
                  message:
                    type: string
              example:
                status: 1
                message: Fax label has removed.
        '404':
          description: None of the supplied labels could be removed.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: integer
                  message:
                    type: string
              example:
                status: 0
                message: No labels found to remove
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````