# Create an identification document

Add an identification document to a personal profile. Not applicable to business profiles.

For SSN submissions, only type and uniqueIdentifier (9 digits, no letters or symbols) are required.

Endpoint: POST /v1/profiles/{profileId}/verification-documents
Security: UserToken

## Path parameters:

  - `profileId` (integer, required)
    Profile ID.

## Request fields (application/json):

  - `firstName` (string)
    Person first name in document.
    Example: "Oliver"

  - `lastName` (string)
    Person last name in document.
    Example: "Wilson"

  - `type` (string)
    Document type.
    Enum: "DRIVERS_LICENCE", "IDENTITY_CARD", "GREEN_CARD", "MY_NUMBER", "PASSPORT", "SSN", "EMIRATES_EMPLOYER", "EMIRATES_PLACE_OF_BIRTH", "CPF_CNPJ", "FINANCIAL_CAPACITY_BR", "OTHER"

  - `uniqueIdentifier` (string)
    Document number or value. Must be digits only when SSN or FINANCIAL_CAPACITY_BR.
    Example: "AA299822313"

  - `issueDate` (string)
    Document issue date.
    Example: "2017-12-31"

  - `issuerCountry` (string)
    Issued by country code. For example "US".
    Example: "EE"

  - `issuerState` (string)
    Issued by state code. For example "NY".

  - `expiryDate` (string)
    Document expiry date.
    Example: "2027-12-31"

  - `nationality` (string)
    2 characters ISO country code.

  - `employerName` (string)
    The name of the employer. Type must be EMIRATES_EMPLOYER.

  - `employerCity` (string)
    The city of the employer. Type must be EMIRATES_EMPLOYER.

  - `employerCountry` (string)
    2 characters ISO country code. Type must be EMIRATES_EMPLOYER.

  - `birthCity` (string)
    The city of birth of the customer. Type must be EMIRATES_PLACE_OF_BIRTH.

  - `birthCountry` (string)
    2 characters ISO country code. Type must be EMIRATES_PLACE_OF_BIRTH.

## Response 200 fields (application/json):

  - `errorMessage` (string,null)

  - `success` (boolean)
    Example: true


