Update Legal Entity

Updates a given legal entity with new information. Updates are subject to review and approval as part of our KYC processes.

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

Update a legal_entity. Updates are partial—send only the fields you want to change, so every field below is optional. The fields available depend on the entity's legal_entity_type (which cannot be changed). This page consolidates the fields, formats, and requirements you need to build a valid request; see the linked pages for edge cases.

📘

Name Updates

Name attributes can only be updated for legal entities that have a status of pending or denied.

Updatable fields for individuals

FieldTypeNotes
first_namestringLegal first name. Name updates are restricted to pending/denied entities.
last_namestringLegal last name. Name updates are restricted to pending/denied entities.
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.

Updatable fields for businesses

FieldTypeNotes
business_namestringLegal business name. Name updates are restricted to pending/denied entities.
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.
country_of_incorporationstringCountry code conforms to ISO 3166-1 alpha-2 (e.g. US).
addressesarray objectSee Address fields. address_types is required for businesses.
identificationsarray objectSee Identification fields.

Address fields

If you include addresses, each entry 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

If you include identifications, each entry 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.

📘

Attaching New Documents

To attach new documents to a legal entity utilize the POST /documents endpoint, passing in the legal entity's id as the documentable_id.

Example requests

{
  "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"
    }
  ]
}
{
  "business_description": "Software development and consulting services.",
  "country_of_incorporation": "US",
  "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.

Path Params
string
required

UUID of the legal entity to be updated.

Body Params
string

An individual's prefix.

string

An individual's first name. Required for individuals.

string

An individual's middle name.

string

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

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

identifications
array of objects

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

identifications
phone_numbers
array of objects

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

The entity's primary email. Required for individuals.

addresses
array of objects

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!