Individual

The Individual Investor Profile within the Parties API enables developers to onboard and manage profiles for individual investors. This document provides an organized breakdown of attributes for the individual investor profile.

Personal Information

AttributeTypeDescription
first_namestringGiven name.
middle_namestring (optional)Middle name or initial.
last_namestringSurname.
salutationstring (optional)Salutation or title (e.g., "mr", "ms").
primary_phonestringPrimary contact phone number.
primary_emailstringPrimary contact email (should be unique).
addressesarray of objectsAddress details (see below).

addresses

AttributeTypeDescription
address_typestringType of address (e.g., "primary").
address_line_1stringFirst address line.
address_line_2string (optional)Second address line.
address_line_3string (optional)Third address line.
citystringCity name.
regionstringState or region name.
postal_codestringPostal or ZIP code.
countrystringCountry code.
attention_ofstring (optional)Attention to specific entity/person.
{
  "id": "9861f309-6349-4491-afd3-43651c2f0c5e",
  "party_type": "individual",
  "individual": {
    "first_name": "John",
    "middle_name": "Roe",
    "last_name": "Doe",
    "salutation": "mr",
    "primary_phone": "+13124012433",
    "primary_email": "[email protected]",
    "addresses": [
      {
        "id": "0e2ec4bf-407b-413d-af7a-9f4ae4eaa830",
        "address_type": "primary",
        "attention_of": null,
        "address_line_1": "111 NE 2nd Ave",
        "address_line_2": null,
        "address_line_3": null,
        "city": "Miami",
        "region": "FL",
        "postal_code": "33132",
        "country": "US",
        "created_at": "2023-08-31T03:19:55.200006Z",
        "updated_at": "2023-08-31T03:19:55.200712Z",
        "metadata": {}
      }
    ]
    ...
  }
  ...
}

Identity Verification

AttributeTypeDescription
date_of_birthstringDate of birth (YYYY-MM-DD format).
country_of_residencestringCurrent country of residence.
region_of_residencestringState or region of residence.
citizenshiparray of stringsCountries of citizenship.
national_idobjectDetails about national ID (see below).
documentsarray of documentsIdentity verification documents:
- National Id
- Passport
- Drivers License
*all international investors require passport uploaded

national_id

AttributeTypeDescription
issuing_countrystringCountry that issued the ID.
typestringType of national ID.
valuestringNational ID value.
{
  "id": "9861f309-6349-4491-afd3-43651c2f0c5e",
  "party_type": "individual",
  "individual": {
    "date_of_birth": "1990-09-21",
    "country_of_residence": "US",
    "region_of_residence": "FL",
    "citizenship": [
      "US",
      "IN"
    ],
    "national_id": {
      "issuing_country": "US",
      "type": "ssn",
      "value": "773995678"
    },
    "documents": [
      {
        "id": "dc6fb149-0cc7-4e16-a89f-4b00e24310f7",
        "name": "John Doe Passport",
        "description": null,
        "purpose": "identity",
        "document_type": "passport",
        "document_subtype": null,
        "party_id": "9861f309-6349-4491-afd3-43651c2f0c5e",
        "file_url": "https://storage.googleapis.com/",
        "metadata": {}
      }
    ]
    ...
  }
  ...
}

Accredited Verification

AttributeTypeDescription
accredited_investor_typestring (optional)Type of accredited investor.
documentsarray of documentsAccredited verification documents:
- Payroll Documents(2 years)
- Tax Returns(2 years)
- Assets and Liability Statements
- SEC License
- Certification Letter from CPA, RIA
{
  "id": "9861f309-6349-4491-afd3-43651c2f0c5e",
  "party_type": "individual",
  "individual": {
    "id": "9861f309-6349-4491-afd3-43651c2f0c5e",
    "accredited_investor_type": "annual_income_over_threshold",
    "documents": [
      {
        "id": "237ce40b-b72d-4954-8fc9-6c6a3f6bb79b",
        "name": "John Doe 2 Year Tax Return",
        "description": null,
        "purpose": "accreditation",
        "document_type": "tax_form",
        "document_subtype": null,
        "party_id": "9861f309-6349-4491-afd3-43651c2f0c5e",
        "file_url": "https://storage.googleapis.com/",
        "metadata": {}
      }
    ]
    ...
  }
  ...
}

Tax Residency

AttributeTypeDescription
residenciesarray of objectsList of tax residencies (see nested details).
us_personbooleanIf the individual is a U.S. person for tax.

residencies

AttributeTypeDescription
primarybooleanIf it's the primary residency.
countrystringCountry code.
tin_typestringType of tax identification number.
tin_valuestringActual tax identification number.
reason_tin_not_providedstring (optional)Reason for not providing TIN.
{
  "id": "9861f309-6349-4491-afd3-43651c2f0c5e",
  "party_type": "individual",
  "individual": {
    "id": "9861f309-6349-4491-afd3-43651c2f0c5e",
    "tax_residency": {
      "residencies": [
        {
          "primary": true,
          "country": "US",
          "tin_type": "ssn",
          "tin_value": "773995678",
          "reason_tin_not_provided": null
        },
        {
          "primary": false,
          "country": "IN",
          "tin_type": "adhar",
          "tin_value": "1234/12345/12345",
          "reason_tin_not_provided": null
        }
      ],
      "date_of_declaration": "2023-08-31T03:52:50.013790Z",
      "us_person": true
    }
    ...
  }
  ...
}

Payment Method

AttributeTypeDescription
idstringUnique identifier for the record.
party_idstringUnique identifier for the associated party.
account_typestringType of account (e.g., "checking").
account_holder_addressobjectContains details about the billing address of the account holder.
namestringName associated with the account (e.g., "John Doe Checking").
bank_namestringName of the bank (e.g., "JP Morgan Chase").
bank_countrystringCountry where the bank is located (e.g., "US").
account_numberstringBank account number.
bank_identification_codesobjectContains bank-specific codes like IBAN, SWIFT/BIC, etc.
payment_typestringType of payment (e.g., "wire").

account_holder_address

AttributeTypeDescription
address_typestringType of address (e.g., "primary").
address_line_1stringFirst address line.
address_line_2string (optional)Second address line.
address_line_3string (optional)Third address line.
citystringCity name.
regionstringState or region name.
postal_codestringPostal or ZIP code.
countrystringCountry code.
attention_ofstring (optional)Attention to specific entity/person.

bank_identification_codes

AttributeTypeDescription
ibanstringInternational Bank Account Number (optional).
swift_bicstringBank Identifier Code (optional).
routing_numberstringRouting number, specific to some banks (e.g., in the USA).
sort_codestringSort code, often used in UK banking (optional).
{
  "id": "d67331cc-2f8d-44c1-8f23-8cd15b35b10f",
  "party_type": "individual",
  "individual": {
    "payment_methods": [
    	{
        "id": "c4f8aa11-c3bd-4d89-8244-5f2816e9abf3",
        "party_id": "d67331cc-2f8d-44c1-8f23-8cd15b35b10f",
        "account_type": "checking",
        "account_holder_address": {
          "id": "3841f98b-67f9-45e2-9688-0828a1083f64",
          "address_type": "legal",
          "attention_of": null,
          "address_line_1": "111 NE 2nd Ave",
          "address_line_2": null,
          "address_line_3": null,
          "city": "Miami",
          "region": "FL",
          "postal_code": "33132",
          "country": "US",
          "created_at": "2023-09-05T17:00:05.489560Z",
          "updated_at": "2023-09-05T17:00:05.490185Z",
          "metadata": {}
        },
        "name": "John Doe Checking",
        "bank_name": "JP Morgan Chase",
        "bank_country": "US",
        "account_number": "00011345678",
        "bank_identification_codes": {
          "iban": "",
          "swift_bic": "",
          "routing_number": "071000013",
          "sort_code": ""
        },
        "payment_type": "wire"
      }
    ]
    ...
  }
  ...
}