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

# Delete Document Page

> Customer API v1 endpoint.

Delete Document Page. Authenticate with a Bearer access token unless the endpoint is the authentication token exchange.


## OpenAPI

````yaml DELETE /v1/esign_documents/{documentId}/pages/{pageNumber}
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/esign_documents/{documentId}/pages/{pageNumber}:
    delete:
      tags:
        - Documents
      summary: Delete Document Page
      description: >-
        Migrated from Customer API v1: Customer eSign Documents > Delete
        Document Page.
      operationId: deletev1EsignDocumentsByDocumentIdPagesByPageNumber
      parameters:
        - name: documentId
          in: path
          required: true
          schema:
            type: string
        - name: pageNumber
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: >-
            Successful response. Response body was not included in the source
            collection.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````