Individual

For an individual customer, the following profile fields are required:

  • reference_id: A unique identifier for the customer within the domain.
  • type: Should be set to individual.
  • contact:
    • email: The email address of the customer.
  • profile:
    • first_name: The first name of the customer.
    • last_name: The last name of the customer.
    • date_of_birth: The date of birth of the customer.
    • national_id_country_iso2: The ISO2 code of the country that issued the national ID.
    • national_id_type: The type of national ID.
    • national_id: The national ID number.
    • citizenship_iso2: The ISO2 code of the citizenship country.
    • address_line1: The first line of the address.
    • state: The state of the address.
    • city: The city of the address.
    • country_iso2: The ISO2 code of the country of the address.
    • zip_code: The postal code of the address.
{
  "reference_id": "unique-individual-id",
  "type": "individual",
  "profile": {
    "tax_country": "US",
    "tax_id": "123-45-6789",
    "first_name": "John",
    "middle_name": "A",
    "last_name": "Doe",
    "date_of_birth": "1980-01-01",
    "national_id_country": "US",
    "national_id_type": "SSN",
    "national_id": "123-45-6789",
    "citizenship": "US",
    "address_line1": "123 Main St",
    "address_line2": "Apt 4B",
    "state": "NY",
    "city": "New York",
    "country": "US",
    "zip_code": "10001",
    "label": "Personal Account"
  },
  "contact": {
    "email": "[email protected]",
    "cellphone": "+1234567890"
  }
}