Create Legal Entity

Create a legal entity.

For a full list of required fields, see Required Fields for Individuals and Required Fields for Businesses.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Create a legal_entity for an individual or a business. The required fields depend on the legal_entity_type you set. This page consolidates everything you need to build a valid request; see the linked pages for edge cases.

Required fields for individuals

Set "legal_entity_type": "individual" and include the following:

FieldTypeNotes
first_namestringLegal first name.
last_namestringLegal last name.
date_of_birthstringFormat: YYYY-MM-DD.
emailstringPrimary email address.
phone_numbersarray objectEach phone_number is in E.164 format, e.g. +12061111111.
addressesarray objectSee Address fields.
identificationsarray objectSee Identification fields.

Required fields for businesses

Set "legal_entity_type": "business" and include the following:

FieldTypeNotes
business_namestringLegal business name.
date_formedstringFormation date. Format: YYYY-MM-DD.
legal_structurestringOne of corporation, llc, non_profit, partnership, sole_proprietorship, trust.
business_descriptionstringA description of the business.
intended_usestringA description of the intended use of the business.
expected_activity_volumenumberMonthly expected transaction volume in USD dollars.
addressesarray objectSee Address fields. address_types is required for businesses.
identificationsarray objectSee Identification fields.

Address fields

Each entry in addresses requires line1, locality, region, postal_code, and country. country conforms to ISO 3166-1 alpha-2 (e.g. US). Businesses must also set address_types (e.g. ["business"], ["business_registered"]).

Identification fields

Each entry in identifications requires id_number and id_type. Include issuing_country (ISO 3166-1 alpha-2) unless the id_type already encodes the country (the first two letters of id_type are the ISO country code). For the full list of supported id_type values and their formats, see Identifications.

📘

Country-specific ID requirements and identification-document rules are covered in Onboard an Individual and Onboard a Business.

Example requests

{
  "legal_entity_type": "individual",
  "first_name": "Jane",
  "last_name": "Doe",
  "date_of_birth": "1980-05-15",
  "email": "[email protected]",
  "phone_numbers": [
    { "phone_number": "+12125550100" }
  ],
  "addresses": [
    {
      "address_types": ["residential"],
      "line1": "123 Main Street",
      "locality": "New York",
      "region": "NY",
      "postal_code": "10001",
      "country": "US"
    }
  ],
  "identifications": [
    {
      "id_number": "489521234",
      "id_type": "us_ssn",
      "issuing_country": "US"
    }
  ]
}
{
  "legal_entity_type": "business",
  "business_name": "Acme Technologies Inc.",
  "date_formed": "2015-03-01",
  "legal_structure": "corporation",
  "business_description": "Software development and consulting services.",
  "intended_use": "Receiving customer payments and paying vendors.",
  "expected_activity_volume": 500000,
  "addresses": [
    {
      "address_types": ["business"],
      "line1": "500 Market Street",
      "line2": "Suite 400",
      "locality": "San Francisco",
      "region": "CA",
      "postal_code": "94105",
      "country": "US"
    }
  ],
  "identifications": [
    {
      "id_number": "451234567",
      "id_type": "us_ein",
      "issuing_country": "US"
    }
  ]
}

For more sample payloads, see Example Requests.

Body Params
string
enum
required
Defaults to individual
Allowed:
string

An individual's prefix.

string
required

An individual's first name. Required for individuals.

string

An individual's middle name.

string
required

An individual's last name. Required for individuals.

string

An individual's suffix.

string

An individual's preferred name.

string

The ISO 3166-1 alpha-2 country code of the individual's citizenship country.

date
required

An individual's date of birth (YYYY-MM-DD). Required for individuals.

identifications
array of objects
required

A list of identifications for the legal entity. Required for both individuals and businesses.

identifications*
phone_numbers
array of objects
required

A list of phone numbers in E.164 format. Required for both individuals and businesses.

phone_numbers*
wealth_and_employment_details
object

Wealth and employment details for an individual. Source of funds can be submitted for a business.

string
required

The entity's primary email. Required for individuals.

addresses
array of objects
required

A list of addresses for the entity. Required for both individuals and businesses.

addresses*
string

The entity's primary website URL.

json

Additional data represented as key-value pairs. Both the key and value must be strings.

string

A description of the entity's intended use as related to any associated accounts or payments.

number

Monthly expected transaction volume in USD dollars.

primary_social_media_sites
array of strings

A list of social media URLs.

primary_social_media_sites
string

An optional user-defined unique identifier.

uuid | null
terms_of_use
object | null

Acceptance of terms of use by the legal entity.

Language
Credentials
Basic
base64
:
LoadingLoading…
Response
Click Try It! to start a request and see the response here!