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

# Upload Did Requirements

> Submit regulatory information required for approval of a phone number.

Submits textual values, uploaded documents, and verification addresses for a number's regulatory review.


## OpenAPI

````yaml POST /v1/numbers/verification/upload_did_requirements
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/numbers/verification/upload_did_requirements:
    post:
      tags:
        - Numbers
      summary: Submit DID requirements
      description: >-
        Submits the textual values, uploaded document references, and
        verification addresses required for regulatory approval of a phone
        number.
      operationId: postv1NumbersVerificationUploadDidRequirements
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                number_id:
                  type: integer
                requirements:
                  type: array
                  items:
                    type: object
                    properties:
                      requirement_id:
                        type: string
                      type:
                        type: string
                      data:
                        type: string
                      other_data:
                        type: string
              required:
                - number_id
            example:
              number_id: 2413
              requirements:
                - requirement_id: 0b42b42a-d827-4b53-a2bb-8eeef919f798
                  type: address
                  data: '3033482171152074501'
                  other_data: >-
                    ASDF, Jalan Boulevard Bukit Gading Raya, RT.6/RW.14, West
                    Kelapa Gading, North Jakarta City, Jakarta, Indonesia
                - requirement_id: 1cfde0b1-f85e-4444-9c1a-413cfa3f079f
                  type: document
                  data: e1f76bee-ca67-4553-9839-511074c072ca.pdf
                  other_data: ''
                - requirement_id: 2708e569-696a-4fc7-9305-5fdb3eb9c7dd
                  type: textual
                  data: Test Verification
                  other_data: ''
                - requirement_id: 6d3e2643-efaa-4bd3-8c31-77b6cda1d6a2
                  type: document
                  data: 756af69c-de74-411e-b974-7cde2ed9b918.pdf
                  other_data: ''
      responses:
        '200':
          description: >-
            Successful response. Response body was not included in the source
            collection.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnvalidatedApiResponse'
        '422':
          description: Required DID requirement information was not supplied.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationMessageResponse'
              example:
                status: 0
                message: The number id field is required.
      security:
        - bearerAuth: []
components:
  schemas:
    UnvalidatedApiResponse:
      type: object
      description: >-
        Provisional response envelope. The exact success response remains
        pending live validation.
      properties:
        status:
          type: integer
          description: Operation status, when returned.
        message:
          type: string
          description: Human-readable result message, when returned.
        data:
          nullable: true
          description: >-
            Endpoint-specific response data. Its structure remains pending
            validation.
    ValidationMessageResponse:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: integer
          description: Indicates that the request was not accepted.
        message:
          type: string
          description: Human-readable validation message.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````