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

# Create Address

> Create an address record for a phone number's regulatory requirements.

Creates a verification address that can be referenced when submitting location-based DID requirements.


## OpenAPI

````yaml POST /v1/numbers/verification/create_address
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/create_address:
    post:
      tags:
        - Numbers
      summary: Create a verification address
      description: >-
        Creates an address record that can be referenced when satisfying
        location-based regulatory requirements for a phone number.
      operationId: postv1NumbersVerificationCreateAddress
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                street_address:
                  type: string
                locality:
                  type: string
                country_code:
                  type: string
                postal_code:
                  type: string
                administrative_area:
                  type: string
                address_components:
                  type: array
                  items:
                    type: object
                    properties:
                      long_name:
                        type: string
                      short_name:
                        type: string
                      types:
                        type: array
                        items:
                          type: string
              required:
                - country_code
            example:
              name: John doe
              street_address: 1 Wilerstrasse
              locality: Amlikon-Bissegg
              country_code: CH
              postal_code: '8514'
              administrative_area: TG
              address_components:
                - long_name: Wilerstrasse
                  short_name: Wilerstrasse
                  types:
                    - route
                - long_name: Amlikon-Bissegg
                  short_name: Amlikon-Bissegg
                  types:
                    - locality
                    - political
                - long_name: Weinfelden
                  short_name: Weinfelden
                  types:
                    - administrative_area_level_2
                    - political
                - long_name: Thurgau
                  short_name: TG
                  types:
                    - administrative_area_level_1
                    - political
                - long_name: Switzerland
                  short_name: CH
                  types:
                    - country
                    - political
                - long_name: '8514'
                  short_name: '8514'
                  types:
                    - postal_code
      responses:
        '200':
          description: The verification address was created successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                  - data
                properties:
                  status:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    required:
                      - address_id
                    properties:
                      address_id:
                        type: string
              example:
                status: 1
                message: Address created successfully
                data:
                  address_id: '3042056293008279020'
        '422':
          description: Required address information was not supplied.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationMessageResponse'
              example:
                status: 0
                message: The country code field is required.
      security:
        - bearerAuth: []
components:
  schemas:
    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

````