> ## Documentation Index
> Fetch the complete documentation index at: https://www.marqeta.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Businesses

> Use the businesses endpoint to create and manage your business account holder resources.

export const EndpointCard = ({method = "API", title, children, href, arrow = true}) => {
  const METHOD_STYLES = {
    GET: {
      bg: "mint-bg-green-400/20 dark:mint-bg-green-400/20",
      text: "mint-text-green-700 dark:mint-text-green-400",
      border: "mint-border-green-300 dark:mint-border-green-700"
    },
    POST: {
      bg: "mint-bg-blue-400/20 dark:mint-bg-blue-400/20",
      text: "mint-text-blue-700 dark:mint-text-blue-400"
    },
    PUT: {
      bg: "mint-bg-yellow-400/20 dark:mint-bg-yellow-400/20",
      text: "mint-text-yellow-700 dark:mint-text-yellow-400"
    },
    PATCH: {
      bg: "mint-bg-orange-400/20 dark:mint-bg-orange-400/20",
      text: "mint-text-orange-700 dark:mint-text-orange-400"
    },
    DELETE: {
      bg: "mint-bg-red-400/20 dark:mint-bg-red-400/20",
      text: "mint-text-red-700 dark:mint-text-red-400"
    },
    API: {
      bg: "mint-bg-black",
      text: "mint-text-white"
    }
  };
  const MethodBadge = ({method}) => {
    const style = METHOD_STYLES[method?.toUpperCase()] ?? METHOD_STYLES.GET;
    return <span className={`
          method-pill rounded-lg font-semibold px-1.5 py-0.5 text-xs leading-5 ${style.bg} ${style.text}`}>
        {method?.toUpperCase()}
      </span>;
  };
  const content = <div className="group flex items-center gap-4 border border-gray-200 dark:border-gray-700 rounded-xl p-5 hover:border-gray-400 dark:hover:border-gray-500 hover:shadow-md transition-all cursor-pointer">
      {}
      <div className="shrink-0">
        <MethodBadge method={method} />
      </div>
      {}
      <div className="flex-1 min-w-0">
        <p className="font-semibold text-gray-900 dark:text-white text-sm leading-snug">{title}</p>
        {children && <p className="mt-1 text-sm text-gray-500 dark:text-gray-400 line-clamp-2">{children}</p>}
      </div>
    </div>;
  if (!href) return content;
  return <a href={href} className="block no-underline border-b-0 mb-2">
      {content}
    </a>;
};

A business is a type of account holder that cannot directly hold cards, but can have parent/child relationships with card-holding users. A business can monitor and control card use by a specified group of users. Every business has a general purpose account (GPA).

For information on how to create a user that has a child-to-parent hierarchical relationship to the business, see [Create User](/core-api/users/#post_users).

<Note>
  **Note**\
  A user can simultaneously be a child of a business and a parent of other users if the user is not configured to use the parent’s account balances and the user’s children are configured to use the parent’s account balances. For more information on account holders, see [About Account Holders](/developer-guides/about-account-holders/).
</Note>

<h2 id="post_businesses">
  Create business
</h2>

**Action:** `POST`\
**Endpoint:** `/businesses`

{/* <EndpointCard
title="Creates a business"
path="/businesses"
method="post"
/> */}

Create a business. The initial status of a newly created business depends on the [Know Your Customer (KYC) requirements](/core-api/kyc-verification/) of the program or associated [account holder group](/core-api/account-holder-groups/).

| KYC Required  | Initial Business State | Business Active on Creation | Business Limitations                                           |
| ------------- | ---------------------- | --------------------------- | -------------------------------------------------------------- |
| Always        | `UNVERIFIED`           | No                          | Cannot load funds.                                             |
| Conditionally | `LIMITED`              | No                          | Restricted by rules in `accountholdergroups.pre_kyc_controls`. |
| Never         | `ACTIVE`               | Required                    | None.                                                          |

To change or track the history of a business' status, use the `/businesstransitions` endpoint. For more information on status changes, see [Create Business Transition](/core-api/business-transitions#post_businesstransitions).

For information about configuring the required fields for KYC verification, see [Perform KYC](/core-api/kyc-verification/#post_kyc).

<h3 id="_request_body">
  Request body
</h3>

| Fields                                                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| account\_holder\_group\_token<br /><br />string<br /><br />Optional                                   | Existing account holder group token that associates the specified account holder group with the business. Send a `GET` request to `/accountholdergroups` to retrieve account holder group tokens.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| active<br /><br />boolean<br /><br />Optional                                                         | Specifies if the business is in the `ACTIVE` state on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| attestation\_consent<br /><br />boolean<br /><br />Optional                                           | Indicates that the attester agrees that the information provided is correct and truthful.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| attestation\_date<br /><br />datetime<br /><br />Optional                                             | Timestamp of the attestation.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| attester\_name<br /><br />string<br /><br />Optional                                                  | Name of the attester for KYC verification.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| attester\_title<br /><br />string<br /><br />Optional                                                 | Title of the attester for KYC verification.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner1.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner1.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner1.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner1.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner1.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner1.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner2.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner2.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner2.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner2.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner2.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner2.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner3.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner3.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner3.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner3.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner3.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner3.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner4.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner4.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner4.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner4.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner4.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner4.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| business\_name\_dba<br /><br />string<br /><br />Optional                                             | Fictitious business name ("Doing Business As" or DBA).<br /><br />This field is required for KYC verification (US-based accounts only). If your business does not use a fictitious business name, enter your legal business name again in this field.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                  |
| business\_name\_legal<br /><br />string<br /><br />Optional                                           | Legal name of business.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| business\_type<br /><br />string<br /><br />Optional                                                  | Indicates the type of business, for example B2B (business-to-business) or B2C (business-to-consumer).<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| date\_established<br /><br />datetime<br /><br />Optional                                             | Date when the business was established.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| duns\_number<br /><br />string<br /><br />Optional                                                    | Data Universal Numbering System (DUNS) number of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| general\_business\_description<br /><br />string<br /><br />Optional                                  | Required for KYC verification (US-based cardholders only). Business description must adhere to the <a href="https://www.census.gov/naics/" target="_blank" rel="noopener">NAICS standard</a>, as defined by the United States Census Bureau. You must provide at least the description; NAICS codes are optional. For example, `Used Car Dealers` or `44112 - Used Car Dealers`.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                            |
| history<br /><br />string<br /><br />Optional                                                         | History of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| identifications<br /><br />array of objects<br /><br />Optional                                       | One or more objects containing identifications associated with the business.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional                         | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| identifications\[].**type**<br /><br />string<br /><br />Required                                     | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| identifications\[].**value**<br /><br />string<br /><br />Optional                                    | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| in\_current\_location\_since<br /><br />datetime<br /><br />Optional                                  | Date on which the business office opened in its current location.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| incorporation<br /><br />object<br /><br />Optional                                                   | Contains information about the organizational structure of the business.<br /><br />This object is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`address_registered_under`, `incorporation_type`, `is_public`, `is_regulated_entity`, `name_registered_under`, `state_of_incorporation`, `stock_symbol`                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**address\_registered\_under**<br /><br />object<br /><br />Optional                    | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| incorporation.address\_registered\_under.**address1**<br /><br />string<br /><br />Optional           | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.address\_registered\_under.**address2**<br /><br />string<br /><br />Optional           | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**city**<br /><br />string<br /><br />Optional               | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| incorporation.address\_registered\_under.**country**<br /><br />string<br /><br />Optional            | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.address\_registered\_under.**postal\_code**<br /><br />string<br /><br />Optional       | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| incorporation.address\_registered\_under.**state**<br /><br />string<br /><br />Optional              | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**zip**<br /><br />string<br /><br />Optional                | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**incorporation\_type**<br /><br />string<br /><br />Optional                           | Organizational structure of the business, such as corporation or sole proprietorship.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`LLC`, `CORPORATION`, `SOLE_PROPRIETORSHIP`, `PARTNERSHIP`, `COOPERATIVE`, `OTHER`, `FINANCIAL_OR_CREDIT_INSTITUTION`, `FOUNDATION`, `ASSOCIATION`, `CHARITY`, `TRUST`                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.**is\_public**<br /><br />boolean<br /><br />Optional                                   | A value of `true` indicates that the business is publicly held.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.**is\_regulated\_entity**<br /><br />boolean<br /><br />Optional                        | A value of `true` indicates that the business is a regulated entity.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| incorporation.**name\_registered\_under**<br /><br />string<br /><br />Optional                       | Name under which the business is registered.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| incorporation.**state\_of\_incorporation**<br /><br />string<br /><br />Optional                      | State, province, territory, or federation where the business is incorporated.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, or federal abbreviation</a> required for KYC verification (`CA` for California or `CAN` for Canada, for example); 255 char max otherwise                                                                                                                                                                                                                                                                                |
| incorporation.**stock\_symbol**<br /><br />string<br /><br />Optional                                 | Business stock symbol.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| international\_office\_locations<br /><br />string<br /><br />Optional                                | Locations of the business' offices outside the US.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ip\_address<br /><br />string<br /><br />Optional                                                     | IP address of the business.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| metadata<br /><br />object<br /><br />Optional                                                        | Associates any additional metadata you provide with the business.<br /><br />**Allowable Values:**<br /><br />You can define the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| notes<br /><br />string<br /><br />Optional                                                           | Any additional information pertaining to the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| office\_location<br /><br />object<br /><br />Optional                                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| office\_location.**address1**<br /><br />string<br /><br />Optional                                   | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| office\_location.**address2**<br /><br />string<br /><br />Optional                                   | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**city**<br /><br />string<br /><br />Optional                                       | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| office\_location.**country**<br /><br />string<br /><br />Optional                                    | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| office\_location.**postal\_code**<br /><br />string<br /><br />Optional                               | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| office\_location.**state**<br /><br />string<br /><br />Optional                                      | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**zip**<br /><br />string<br /><br />Optional                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| password<br /><br />string<br /><br />Optional                                                        | Password for the business account on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />- Must contain at least one numeral<br /><br />- Must contain at least one lowercase letter<br /><br />- Must contain at least one uppercase letter<br /><br />- Must contain at least one of these symbols:<br />`@``#``$``%``!``^``&``*``(``)`<br />`\\``_``+``~``-``=``[``]``\{``}`<br />`,``;``:``'``"``.``/``<``>``?`<code>\`</code>                                                                                                                                                                                                                                                                                                                              |
| phone<br /><br />string<br /><br />Optional                                                           | 10-digit telephone number of business.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| primary\_contact<br /><br />object<br /><br />Optional                                                | Describes the business' primary contact person.<br /><br />**Allowable Values:**<br /><br />`department`, `email`, `extension`, `fax`, `full_name`, `mobile`, `phone`, `title`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**department**<br /><br />string<br /><br />Optional                                 | Business department of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| primary\_contact.**email**<br /><br />string<br /><br />Optional                                      | Email address of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**extension**<br /><br />string<br /><br />Optional                                  | Phone extension of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| primary\_contact.**fax**<br /><br />string<br /><br />Optional                                        | Fax number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| primary\_contact.**full\_name**<br /><br />string<br /><br />Optional                                 | Full name of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| primary\_contact.**mobile**<br /><br />string<br /><br />Optional                                     | Mobile phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| primary\_contact.**phone**<br /><br />string<br /><br />Optional                                      | Phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| primary\_contact.**title**<br /><br />string<br /><br />Optional                                      | Title of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_is\_beneficial\_owner<br /><br />boolean<br /><br />Optional                              | Indicates that the proprietor or officer of the business is also a beneficial owner.<br /><br />This field is required for KYC verification if the business proprietor or officer is also a beneficial owner.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer<br /><br />object<br /><br />Optional                                         | Contains information about the proprietor or officer of the business.<br /><br />This object is required for KYC verification of proprietors or officers of privately held businesses in the United States. This object is not required for publicly held businesses.<br /><br />**Allowable Values:**<br /><br />`alternative_names`, `birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `phone`, `ssn`, `title`                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**alternative\_names**<br /><br />string<br /><br />Optional                  | Alternate names of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.**birth\_place**<br /><br />string<br /><br />Optional                        | Country of birth of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**dob**<br /><br />datetime<br /><br />Optional                               | Business proprietor or officer’s date of birth.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**email**<br /><br />string<br /><br />Optional                               | Email address of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.**first\_name**<br /><br />string<br /><br />Required                         | First name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**home**<br /><br />object<br /><br />Optional                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| proprietor\_or\_officer.home.**address1**<br /><br />string<br /><br />Optional                       | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.home.**address2**<br /><br />string<br /><br />Optional                       | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**city**<br /><br />string<br /><br />Optional                           | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.home.**country**<br /><br />string<br /><br />Optional                        | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.home.**postal\_code**<br /><br />string<br /><br />Optional                   | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.home.**state**<br /><br />string<br /><br />Optional                          | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**zip**<br /><br />string<br /><br />Optional                            | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| proprietor\_or\_officer.**identifications**<br /><br />array of objects<br /><br />Optional           | One or more objects containing personal identifications of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**type**<br /><br />string<br /><br />Required             | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**value**<br /><br />string<br /><br />Optional            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| proprietor\_or\_officer.**last\_name**<br /><br />string<br /><br />Required                          | Last name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.**middle\_name**<br /><br />string<br /><br />Optional                        | Middle name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**nationality**<br /><br />string<br /><br />Optional                         | Nationality of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                         |
| proprietor\_or\_officer.**phone**<br /><br />string<br /><br />Optional                               | Telephone number of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212<br /><br />Do not insert a 1 before the area code.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**ssn**<br /><br />string<br /><br />Optional                                 | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Nine digits, no delimiters. `123456789`, for example.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**title**<br /><br />string<br /><br />Optional                               | Title of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| taxpayer\_id<br /><br />string<br /><br />Optional                                                    | Taxpayer identifier of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| token<br /><br />string<br /><br />Optional                                                           | Unique identifier of the business resource.<br /><br />If you do not include a token, the system generates one automatically. This token is necessary for use in other API calls, so we recommend that rather than let the system generate one, you use a simple string that is easy to remember. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                               |
| website<br /><br />string<br /><br />Optional                                                         | URL of the business' website.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |

<h3 id="_sample_request_body">
  Sample request body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_business_02",
  "metadata": {
    "my_name_1": "my_value_1",
    "my_name_2": "my_value_2"
  },
  "notes": "My notes",
  "password": "My_passw0rd",
  "phone": "5105551212",
  "website": "https://my_business_02.com",
  "history": "My_business_history",
  "incorporation": {
    "is_public": true,
    "stock_symbol": "MB",
    "state_of_incorporation": "CA",
    "name_registered_under": "First Middle Last",
    "address_registered_under": {
      "address1": "123 B Street",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    },
    "incorporation_type": "LLC"
  },
  "ip_address": "67.120.28.118,",
  "business_name_legal": "My_legal_business_name",
  "business_name_dba": "My_fictitious_business_name",
  "office_location": {
    "address1": "123 A street",
    "address2": "Suite 123",
    "city": "Oakland",
    "state": "CA",
    "postal_code": "94610",
    "country": "US"
  },
  "in_current_location_since": "2010-04-15T00:01:00Z",
  "date_established": "2010-04-15T00:01:00Z",
  "general_business_description": "44112 - Used Car Dealers",
  "business_type": "My_business_type",
  "international_office_locations": "Athens, Greece; Buenos Aires, Argentina",
  "identifications": [
    {
      "type": "BUSINESS_TAX_ID",
      "value": "123456789"
    }
  ],
  "duns_number": "987654321",
  "primary_contact": {
    "title": "Dr",
    "department": "My_department",
    "phone": "5105551212",
    "extension": "11",
    "fax": "5105551222",
    "email": "dr.me@my.business.com",
    "full_name": "First Middle Last",
    "mobile": "5105551213"
  },
  "proprietor_or_officer": {
    "title": "Mr",
    "dob": "1985-01-08T00:00:00Z",
    "phone": "5105551211",
    "email": "mr.myself@my.business.com",
    "first_name": "First",
    "middle_name": "Middle",
    "last_name": "Last",
    "alternative_names": "My Alternative Name",
    "ssn": "5555",
    "home": {
      "address1": "123 B Street",
      "address2": "Apt A",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    }
  },
  "beneficial_owner1": {
    "title": "Ms",
    "dob": "1982-07-23T05:36:00Z",
    "ssn": "123456789",
    "phone": "5105551212",
    "first_name": "First",
    "middle_name": "Middle",
    "last_name": "Last",
    "home": {
      "address1": "123 B Street",
      "address2": "Apt A",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    }
  },
  "beneficial_owner2": {
    "title": "Ms",
    "dob": "1973-11-11T11:11:11Z",
    "ssn": "234567891",
    "phone": "5105551213",
    "first_name": "First",
    "middle_name": "Middle",
    "last_name": "Last",
    "home": {
      "address1": "4321 Grove Street",
      "address2": "Suite 123",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    }
  },
  "beneficial_owner3": {
    "title": "Ms",
    "dob": "1981-02-14T15:16:17Z",
    "ssn": "345678912",
    "phone": "5105551214",
    "first_name": "First",
    "middle_name": "Middle",
    "last_name": "Last",
    "home": {
      "address1": "789 Pulgas Ave",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    }
  },
  "beneficial_owner4": {
    "title": "Dr",
    "dob": "1954-03-07T15:16:17Z",
    "ssn": "456789123",
    "phone": "5105551215",
    "first_name": "First",
    "middle_name": "Middle",
    "last_name": "Last",
    "home": {
      "address1": "16 Poplar Street",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    }
  },
  "attester_name": "Jane Smith",
  "attester_title": "Chief Executive Officer",
  "attestation_date": "2025-03-03T00:01:00Z"
}
```

<h3 id="_response_body">
  Response body
</h3>

| Fields                                                                                                              | Description                                                                                                                                                                                                                                                                                                                                                     |
| ------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| account\_holder\_group\_token<br /><br />string<br /><br />Conditionally returned                                   | Associates the specified account holder group with the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                        |
| active<br /><br />boolean<br /><br />Conditionally returned                                                         | Specifies if the business is in the `ACTIVE` state on the Marqeta platform.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                         |
| attestation\_consent<br /><br />boolean<br /><br />Conditionally returned                                           | Indicates that the attester agrees that the information provided is correct and truthful.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                           |
| attestation\_date<br /><br />datetime<br /><br />Conditionally returned                                             | Timestamp of the attestation.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                            |
| attester\_name<br /><br />string<br /><br />Conditionally returned                                                  | Name of the attester for KYC verification.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                              |
| attester\_title<br /><br />string<br /><br />Conditionally returned                                                 | Title of the attester for KYC verification.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                             |
| authentication<br /><br />object<br /><br />Conditionally returned                                                  | Contains metadata about the business's email verification and password updates.<br /><br />**Allowable Values:**<br /><br />`email_verified`, `email_verified_time`, `last_password_update_channel`, `last_password_update_time`                                                                                                                                |
| authentication.**email\_verified**<br /><br />boolean<br /><br />Conditionally returned                             | Specifies whether the email address has been verified.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                              |
| authentication.**email\_verified\_time**<br /><br />datetime<br /><br />Conditionally returned                      | Date and time when the email address was verified.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                        |
| authentication.**last\_password\_update\_channel**<br /><br />string<br /><br />Conditionally returned              | Specifies the channel through which the password was last changed.<br /><br />**Allowable Values:**<br /><br />`USER_CHANGE`, `USER_RESET`                                                                                                                                                                                                                      |
| authentication.**last\_password\_update\_time**<br /><br />datetime<br /><br />Conditionally returned               | Date and time when the password was last changed.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                         |
| beneficial\_owner1<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner1.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner1.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner1.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner1.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner1.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner1.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner1.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner1.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner1.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner1.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner1.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner1.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner1.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner1.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner1.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner1.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner1.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner1.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner1.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner1.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner1.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner1.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner1.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| beneficial\_owner2<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner2.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner2.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner2.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner2.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner2.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner2.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner2.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner2.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner2.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner2.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner2.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner2.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner2.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner2.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner2.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner2.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner2.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner2.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner2.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner2.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner2.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner2.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner2.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| beneficial\_owner3<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner3.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner3.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner3.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner3.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner3.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner3.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner3.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner3.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner3.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner3.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner3.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner3.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner3.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner3.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner3.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner3.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner3.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner3.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner3.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner3.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner3.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner3.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner3.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| beneficial\_owner4<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner4.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner4.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner4.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner4.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner4.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner4.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner4.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner4.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner4.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner4.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner4.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner4.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner4.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner4.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner4.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner4.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner4.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner4.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner4.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner4.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner4.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner4.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner4.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| business\_name\_dba<br /><br />string<br /><br />Conditionally returned                                             | Fictitious business name ("Doing Business As" or DBA).<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                 |
| business\_name\_legal<br /><br />string<br /><br />Conditionally returned                                           | Legal name of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                            |
| business\_type<br /><br />string<br /><br />Conditionally returned                                                  | Indicates the type of business, for example B2B (business-to-business) or B2C (business-to-consumer).<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                  |
| created\_time<br /><br />datetime<br /><br />Returned                                                               | Date and time when the business was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                      |
| date\_established<br /><br />datetime<br /><br />Conditionally returned                                             | Date and time when the business was established.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                         |
| duns\_number<br /><br />string<br /><br />Conditionally returned                                                    | Data Universal Numbering System (DUNS) number of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                         |
| general\_business\_description<br /><br />string<br /><br />Conditionally returned                                  | General description of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| history<br /><br />string<br /><br />Conditionally returned                                                         | History of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                               |
| identifications<br /><br />array of objects<br /><br />Conditionally returned                                       | One or more objects containing identifications associated with the business.<br /><br />Objects are returned if they exist in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                    |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned                         | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                                     | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                                    | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| in\_current\_location\_since<br /><br />datetime<br /><br />Conditionally returned                                  | Date on which the business office opened in its current location.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                        |
| incorporation<br /><br />object<br /><br />Conditionally returned                                                   | Contains information about the organizational structure of the business.<br /><br />**Allowable Values:**<br /><br />`address_registered_under`, `incorporation_type`, `is_public`, `is_regulated_entity`, `name_registered_under`, `state_of_incorporation`, `stock_symbol`                                                                                    |
| incorporation.**address\_registered\_under**<br /><br />object<br /><br />Conditionally returned                    | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| incorporation.address\_registered\_under.**address1**<br /><br />string<br /><br />Conditionally returned           | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| incorporation.address\_registered\_under.**address2**<br /><br />string<br /><br />Conditionally returned           | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| incorporation.address\_registered\_under.**city**<br /><br />string<br /><br />Conditionally returned               | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| incorporation.address\_registered\_under.**country**<br /><br />string<br /><br />Conditionally returned            | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| incorporation.address\_registered\_under.**postal\_code**<br /><br />string<br /><br />Conditionally returned       | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| incorporation.address\_registered\_under.**state**<br /><br />string<br /><br />Conditionally returned              | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| incorporation.address\_registered\_under.**zip**<br /><br />string<br /><br />Conditionally returned                | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| incorporation.**incorporation\_type**<br /><br />string<br /><br />Conditionally returned                           | Organizational structure of the business (corporation or sole proprietorship, for example).<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LLC`, `CORPORATION`, `SOLE_PROPRIETORSHIP`, `PARTNERSHIP`, `OTHER`, `FINANCIAL_OR_CREDIT_INSTITUTION`, `FOUNDATION`, `ASSOCIATION`, `CHARITY`, `TRUST` |
| incorporation.**is\_public**<br /><br />boolean<br /><br />Conditionally returned                                   | A value of `true` indicates that the business is publicly held.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                     |
| incorporation.**is\_regulated\_entity**<br /><br />boolean<br /><br />Conditionally returned                        | A value of `true` indicates that the business is a regulated entity.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                |
| incorporation.**name\_registered\_under**<br /><br />string<br /><br />Conditionally returned                       | Name under which the business is registered.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                           |
| incorporation.**state\_of\_incorporation**<br /><br />string<br /><br />Conditionally returned                      | State, province, territory, or federation where the business is incorporated.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                          |
| incorporation.**stock\_symbol**<br /><br />string<br /><br />Conditionally returned                                 | Stock symbol associated with the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                             |
| international\_office\_locations<br /><br />string<br /><br />Conditionally returned                                | Locations of the business' offices outside the US.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                     |
| ip\_address<br /><br />string<br /><br />Conditionally returned                                                     | IP address of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                             |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                        | Date and time when the business was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                |
| metadata<br /><br />object<br /><br />Conditionally returned                                                        | Associates any additional metadata you provide with the business.<br /><br />Metadata is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `metadata` object                                                                                                                                                          |
| notes<br /><br />string<br /><br />Conditionally returned                                                           | Any additional information pertaining to the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                 |
| office\_location<br /><br />object<br /><br />Conditionally returned                                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| office\_location.**address1**<br /><br />string<br /><br />Conditionally returned                                   | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| office\_location.**address2**<br /><br />string<br /><br />Conditionally returned                                   | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| office\_location.**city**<br /><br />string<br /><br />Conditionally returned                                       | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| office\_location.**country**<br /><br />string<br /><br />Conditionally returned                                    | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| office\_location.**postal\_code**<br /><br />string<br /><br />Conditionally returned                               | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| office\_location.**state**<br /><br />string<br /><br />Conditionally returned                                      | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| office\_location.**zip**<br /><br />string<br /><br />Conditionally returned                                        | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| password<br /><br />string<br /><br />Conditionally returned                                                        | Password for the business account on the Marqeta platform.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                              |
| phone<br /><br />string<br /><br />Conditionally returned                                                           | 10-digit telephone number of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                             |
| primary\_contact<br /><br />object<br /><br />Conditionally returned                                                | Describes the business' primary contact person.<br /><br />**Allowable Values:**<br /><br />`department`, `email`, `extension`, `fax`, `full_name`, `mobile`, `phone`, `title`                                                                                                                                                                                  |
| primary\_contact.**department**<br /><br />string<br /><br />Conditionally returned                                 | Business department of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                            |
| primary\_contact.**email**<br /><br />string<br /><br />Conditionally returned                                      | Email address of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                  |
| primary\_contact.**extension**<br /><br />string<br /><br />Conditionally returned                                  | Phone extension of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                |
| primary\_contact.**fax**<br /><br />string<br /><br />Conditionally returned                                        | Fax number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                       |
| primary\_contact.**full\_name**<br /><br />string<br /><br />Conditionally returned                                 | Full name of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                      |
| primary\_contact.**mobile**<br /><br />string<br /><br />Conditionally returned                                     | Mobile phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                              |
| primary\_contact.**phone**<br /><br />string<br /><br />Conditionally returned                                      | Phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                     |
| primary\_contact.**title**<br /><br />string<br /><br />Conditionally returned                                      | Title of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                          |
| proprietor\_is\_beneficial\_owner<br /><br />boolean<br /><br />Conditionally returned                              | Indicates that the proprietor or officer of the business is also a beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                |
| proprietor\_or\_officer<br /><br />object<br /><br />Conditionally returned                                         | Contains information about the proprietor or officer of the business.<br /><br />**Allowable Values:**<br /><br />`alternative_names`, `birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `phone`, `ssn`, `title`                                                                               |
| proprietor\_or\_officer.**alternative\_names**<br /><br />string<br /><br />Conditionally returned                  | Alternate names of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                 |
| proprietor\_or\_officer.**birth\_place**<br /><br />string<br /><br />Conditionally returned                        | Country of birth of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                 |
| proprietor\_or\_officer.**dob**<br /><br />datetime<br /><br />Conditionally returned                               | Business proprietor or officer’s date of birth.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                          |
| proprietor\_or\_officer.**email**<br /><br />string<br /><br />Conditionally returned                               | Email address of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                   |
| proprietor\_or\_officer.**first\_name**<br /><br />string<br /><br />Conditionally returned                         | First name of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                      |
| proprietor\_or\_officer.**home**<br /><br />object<br /><br />Conditionally returned                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| proprietor\_or\_officer.home.**address1**<br /><br />string<br /><br />Conditionally returned                       | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| proprietor\_or\_officer.home.**address2**<br /><br />string<br /><br />Conditionally returned                       | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| proprietor\_or\_officer.home.**city**<br /><br />string<br /><br />Conditionally returned                           | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| proprietor\_or\_officer.home.**country**<br /><br />string<br /><br />Conditionally returned                        | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| proprietor\_or\_officer.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                   | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| proprietor\_or\_officer.home.**state**<br /><br />string<br /><br />Conditionally returned                          | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| proprietor\_or\_officer.home.**zip**<br /><br />string<br /><br />Conditionally returned                            | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| proprietor\_or\_officer.**identifications**<br /><br />array of objects<br /><br />Conditionally returned           | One or more objects containing personal identifications of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                 |
| proprietor\_or\_officer.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned             | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| proprietor\_or\_officer.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| proprietor\_or\_officer.**last\_name**<br /><br />string<br /><br />Conditionally returned                          | Last name of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                       |
| proprietor\_or\_officer.**middle\_name**<br /><br />string<br /><br />Conditionally returned                        | Middle name of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                     |
| proprietor\_or\_officer.**nationality**<br /><br />string<br /><br />Conditionally returned                         | Nationality of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                      |
| proprietor\_or\_officer.**phone**<br /><br />string<br /><br />Conditionally returned                               | Telephone number of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                          |
| proprietor\_or\_officer.**ssn**<br /><br />string<br /><br />Conditionally returned                                 | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                 |
| proprietor\_or\_officer.**title**<br /><br />string<br /><br />Conditionally returned                               | Title of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                           |
| status<br /><br />string<br /><br />Conditionally returned                                                          | Specifies the state of the business on the Marqeta platform.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`UNVERIFIED`, `LIMITED`, `ACTIVE`, `SUSPENDED`, `CLOSED`                                                                                                                               |
| taxpayer\_id<br /><br />string<br /><br />Conditionally returned                                                    | Taxpayer identifier of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Conditionally returned                                                           | Unique identifier of the business resource.<br /><br />This field is always returned.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                    |
| website<br /><br />string<br /><br />Conditionally returned                                                         | URL of the business' website.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                          |

<h3 id="_sample_response_body">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_business_02",
  "active": true,
  "notes": "My notes",
  "ip_address": "67.120.28.118",
  "password": "My_passw0rd",
  "phone": "5105551212",
  "metadata": {
    "my_name_1": "my_value_1",
    "my_name_2": "my_value_2"
  },
  "business_name_legal": "My_legal_business_name",
  "business_name_dba": "My_fictitious_business_name",
  "office_location": {
    "address1": "123 A Street",
    "address2": "Suite 123",
    "city": "Oakland",
    "state": "CA",
    "postal_code": "94610",
    "country": "US"
  },
  "in_current_location_since": "2010-04-15T00:01:00Z",
  "website": "https://my_business_02.com",
  "date_established": "2010-04-15T00:01:00Z",
  "general_business_description": "44112 - Used Car Dealers",
  "history": "My_business_history",
  "business_type": "My_business_type",
  "international_office_locations": "Athens, Greece; Buenos Aires, Argentina",
  "identifications": [
    {
      "type": "BUSINESS_TAX_ID",
      "value": "123456789"
    }
  ],
  "duns_number": "987654321",
  "primary_contact": {
    "full_name": "First Middle Last",
    "title": "Dr",
    "department": "My_department",
    "phone": "5105551212",
    "extension": "11",
    "fax": "5105551222",
    "mobile": "5105551213",
    "email": "dr.me@my.business.com"
  },
  "incorporation": {
    "is_public": true,
    "stock_symbol": "MB",
    "state_of_incorporation": "CA",
    "name_registered_under": "First Middle Last",
    "address_registered_under": {
      "address1": "123 B Street",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    },
    "incorporation_type": "LLC"
  },
  "proprietor_or_officer": {
    "title": "Mr",
    "dob": "1985-01-08T00:00:00Z",
    "phone": "5105551211",
    "email": "mr.myself@my.business.com",
    "first_name": "First",
    "middle_name": "Middle",
    "last_name": "Last",
    "alternative_names": "My Alternative Name",
    "ssn": "5555",
    "home": {
      "address1": "123 B Street",
      "address2": "Apt A",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    }
  },
  "created_time": "2025-01-13T23:29:10Z",
  "last_modified_time": "2025-01-13T23:29:10Z",
  "deposit_account": {
    "x-mq-internal": true,
    "token": "420df02a-6aef-42bf-be7b-0d080ebf7573",
    "account_number": "12342126720827265",
    "routing_number": "293748000"
  },
  "status": "ACTIVE"
}
```

<h2 id="get_businesses">
  List businesses
</h2>

**Action:** `GET`\
**Endpoint:** `/businesses`

{/* <EndpointCard
title="List all businesses"
path="/businesses"
method="get"
/> */}

To return an array of all businesses, send a `GET` request to the `/businesses` endpoint.

To narrow your result set to businesses that match a particular legal or fictitious name, include the appropriate parameters from the following query parameters table. This endpoint also supports [field filtering](/core-api/field-filtering/) and [sorting and pagination](/core-api/sorting-and-pagination/).

<h3 id="_url_query_parameters">
  URL query parameters
</h3>

| Fields                                                      | Description                                                                                                                                                                                                                                                                                                                                                                                                               |
| ----------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional                | Number of business resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                                                                                                                                                |
| start\_index<br /><br />integer<br /><br />Optional         | Sort order index of the first resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                     |
| business\_name\_dba<br /><br />string<br /><br />Optional   | Fictitious or "doing business as (DBA)" name of the business.<br /><br />**Allowable Values:**<br /><br />Existing DBA name of the business                                                                                                                                                                                                                                                                               |
| business\_name\_legal<br /><br />string<br /><br />Optional | Legal name of the business.<br /><br />**Allowable Values:**<br /><br />Existing legal name of the business                                                                                                                                                                                                                                                                                                               |
| search\_type<br /><br />string<br /><br />Optional          | Specifies the search type for the query.<br /><br />**Allowable Values:**<br /><br />`query_then_fetch`, `dfs_query_then_fetch`                                                                                                                                                                                                                                                                                           |
| fields<br /><br />string<br /><br />Optional                | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank                                                                                                                                                                                                                           |
| sort\_by<br /><br />string<br /><br />Optional              | Field on which to sort. Use any field in the resource model, or one of the system fields `lastModifiedTime` or `createdTime`. Prefix the field name with a hyphen (`-`) to sort in descending order. Omit the hyphen to sort in ascending order.<br /><br />**Allowable Values:**<br /><br />`createdTime`, `lastModifiedTime`, or any field in the resource model<br /><br />**Default value:**<br />`-lastModifiedTime` |

<h3 id="_response_body_2">
  Response body
</h3>

| Fields                                                                                                                      | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                                                                  | Number of resources to retrieve.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data<br /><br />array of objects<br /><br />Conditionally returned                                                          | Array of business objects.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more business objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**account\_holder\_group\_token**<br /><br />string<br /><br />Conditionally returned                               | Existing account holder group token that associates the specified account holder group with the business. Send a `GET` request to `/accountholdergroups` to retrieve account holder group tokens.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].**active**<br /><br />boolean<br /><br />Conditionally returned                                                     | Specifies if the business is in the `ACTIVE` state on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**attestation\_consent**<br /><br />boolean<br /><br />Conditionally returned                                       | Indicates that the attester agrees that the information provided is correct and truthful.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**attestation\_date**<br /><br />datetime<br /><br />Conditionally returned                                         | Timestamp of the attestation.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].**attester\_name**<br /><br />string<br /><br />Conditionally returned                                              | Name of the attester for KYC verification.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**attester\_title**<br /><br />string<br /><br />Conditionally returned                                             | Title of the attester for KYC verification.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**beneficial\_owner1**<br /><br />object<br /><br />Conditionally returned                                          | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| data\[].beneficial\_owner1.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner1.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].beneficial\_owner1.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner1.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner1.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].beneficial\_owner1.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner1.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner1.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner1.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner1.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner1.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner1.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner1.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].beneficial\_owner1.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner1.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| data\[].beneficial\_owner1.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner1.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].beneficial\_owner1.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner1.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner1.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner1.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner1.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].beneficial\_owner1.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**beneficial\_owner2**<br /><br />object<br /><br />Conditionally returned                                          | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| data\[].beneficial\_owner2.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner2.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].beneficial\_owner2.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner2.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner2.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].beneficial\_owner2.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner2.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner2.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner2.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner2.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner2.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner2.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner2.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].beneficial\_owner2.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner2.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| data\[].beneficial\_owner2.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner2.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].beneficial\_owner2.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner2.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner2.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner2.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner2.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].beneficial\_owner2.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**beneficial\_owner3**<br /><br />object<br /><br />Conditionally returned                                          | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| data\[].beneficial\_owner3.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner3.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].beneficial\_owner3.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner3.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner3.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].beneficial\_owner3.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner3.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner3.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner3.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner3.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner3.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner3.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner3.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].beneficial\_owner3.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner3.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| data\[].beneficial\_owner3.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner3.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].beneficial\_owner3.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner3.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner3.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner3.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner3.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].beneficial\_owner3.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**beneficial\_owner4**<br /><br />object<br /><br />Conditionally returned                                          | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| data\[].beneficial\_owner4.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner4.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].beneficial\_owner4.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner4.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner4.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].beneficial\_owner4.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].beneficial\_owner4.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner4.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner4.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner4.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner4.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].beneficial\_owner4.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner4.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].beneficial\_owner4.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].beneficial\_owner4.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| data\[].beneficial\_owner4.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].beneficial\_owner4.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].beneficial\_owner4.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].beneficial\_owner4.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner4.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].beneficial\_owner4.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].beneficial\_owner4.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].beneficial\_owner4.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**business\_name\_dba**<br /><br />string<br /><br />Conditionally returned                                         | Fictitious business name ("Doing Business As" or DBA).<br /><br />This field is required for KYC verification (US-based accounts only). If your business does not use a fictitious business name, enter your legal business name again in this field.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**business\_name\_legal**<br /><br />string<br /><br />Conditionally returned                                       | Legal name of business.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**business\_type**<br /><br />string<br /><br />Conditionally returned                                              | Indicates the type of business, for example B2B (business-to-business) or B2C (business-to-consumer).<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**date\_established**<br /><br />datetime<br /><br />Conditionally returned                                         | Date when the business was established.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**duns\_number**<br /><br />string<br /><br />Conditionally returned                                                | Data Universal Numbering System (DUNS) number of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].**general\_business\_description**<br /><br />string<br /><br />Conditionally returned                              | Required for KYC verification (US-based cardholders only). Business description must adhere to the <a href="https://www.census.gov/naics/" target="_blank" rel="noopener">NAICS standard</a>, as defined by the United States Census Bureau. You must provide at least the description; NAICS codes are optional. For example, `Used Car Dealers` or `44112 - Used Car Dealers`.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                            |
| data\[].**history**<br /><br />string<br /><br />Conditionally returned                                                     | History of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**identifications**<br /><br />array of objects<br /><br />Conditionally returned                                   | One or more objects containing identifications associated with the business.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned                         | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].identifications\[].**type**<br /><br />string<br /><br />Returned                                                   | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| data\[].identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                                    | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**in\_current\_location\_since**<br /><br />datetime<br /><br />Conditionally returned                              | Date on which the business office opened in its current location.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| data\[].**incorporation**<br /><br />object<br /><br />Conditionally returned                                               | Contains information about the organizational structure of the business.<br /><br />This object is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`address_registered_under`, `incorporation_type`, `is_public`, `is_regulated_entity`, `name_registered_under`, `state_of_incorporation`, `stock_symbol`                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].incorporation.**address\_registered\_under**<br /><br />object<br /><br />Conditionally returned                    | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].incorporation.address\_registered\_under.**address1**<br /><br />string<br /><br />Conditionally returned           | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].incorporation.address\_registered\_under.**address2**<br /><br />string<br /><br />Conditionally returned           | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].incorporation.address\_registered\_under.**city**<br /><br />string<br /><br />Conditionally returned               | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].incorporation.address\_registered\_under.**country**<br /><br />string<br /><br />Conditionally returned            | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].incorporation.address\_registered\_under.**postal\_code**<br /><br />string<br /><br />Conditionally returned       | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].incorporation.address\_registered\_under.**state**<br /><br />string<br /><br />Conditionally returned              | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].incorporation.address\_registered\_under.**zip**<br /><br />string<br /><br />Conditionally returned                | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].incorporation.**incorporation\_type**<br /><br />string<br /><br />Conditionally returned                           | Organizational structure of the business, such as corporation or sole proprietorship.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`LLC`, `CORPORATION`, `SOLE_PROPRIETORSHIP`, `PARTNERSHIP`, `COOPERATIVE`, `OTHER`, `FINANCIAL_OR_CREDIT_INSTITUTION`, `FOUNDATION`, `ASSOCIATION`, `CHARITY`, `TRUST`                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].incorporation.**is\_public**<br /><br />boolean<br /><br />Conditionally returned                                   | A value of `true` indicates that the business is publicly held.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].incorporation.**is\_regulated\_entity**<br /><br />boolean<br /><br />Conditionally returned                        | A value of `true` indicates that the business is a regulated entity.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].incorporation.**name\_registered\_under**<br /><br />string<br /><br />Conditionally returned                       | Name under which the business is registered.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| data\[].incorporation.**state\_of\_incorporation**<br /><br />string<br /><br />Conditionally returned                      | State, province, territory, or federation where the business is incorporated.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, or federal abbreviation</a> required for KYC verification (`CA` for California or `CAN` for Canada, for example); 255 char max otherwise                                                                                                                                                                                                                                                                                |
| data\[].incorporation.**stock\_symbol**<br /><br />string<br /><br />Conditionally returned                                 | Business stock symbol.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].**international\_office\_locations**<br /><br />string<br /><br />Conditionally returned                            | Locations of the business' offices outside the US.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].**ip\_address**<br /><br />string<br /><br />Conditionally returned                                                 | IP address of the business.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].**metadata**<br /><br />object<br /><br />Conditionally returned                                                    | Associates any additional metadata you provide with the business.<br /><br />**Allowable Values:**<br /><br />You can define the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**notes**<br /><br />string<br /><br />Conditionally returned                                                       | Any additional information pertaining to the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].**office\_location**<br /><br />object<br /><br />Conditionally returned                                            | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].office\_location.**address1**<br /><br />string<br /><br />Conditionally returned                                   | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].office\_location.**address2**<br /><br />string<br /><br />Conditionally returned                                   | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].office\_location.**city**<br /><br />string<br /><br />Conditionally returned                                       | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].office\_location.**country**<br /><br />string<br /><br />Conditionally returned                                    | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].office\_location.**postal\_code**<br /><br />string<br /><br />Conditionally returned                               | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].office\_location.**state**<br /><br />string<br /><br />Conditionally returned                                      | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].office\_location.**zip**<br /><br />string<br /><br />Conditionally returned                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].**password**<br /><br />string<br /><br />Conditionally returned                                                    | Password for the business account on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />- Must contain at least one numeral<br /><br />- Must contain at least one lowercase letter<br /><br />- Must contain at least one uppercase letter<br /><br />- Must contain at least one of these symbols:<br />`@``#``$``%``!``^``&``*``(``)`<br />`\\``_``+``~``-``=``[``]``\{``}`<br />`,``;``:``'``"``.``/``<``>``?`<code>\`</code>                                                                                                                                                                                                                                                                                                                              |
| data\[].**phone**<br /><br />string<br /><br />Conditionally returned                                                       | 10-digit telephone number of business.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].**primary\_contact**<br /><br />object<br /><br />Conditionally returned                                            | Describes the business' primary contact person.<br /><br />**Allowable Values:**<br /><br />`department`, `email`, `extension`, `fax`, `full_name`, `mobile`, `phone`, `title`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].primary\_contact.**department**<br /><br />string<br /><br />Conditionally returned                                 | Business department of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].primary\_contact.**email**<br /><br />string<br /><br />Conditionally returned                                      | Email address of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].primary\_contact.**extension**<br /><br />string<br /><br />Conditionally returned                                  | Phone extension of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| data\[].primary\_contact.**fax**<br /><br />string<br /><br />Conditionally returned                                        | Fax number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].primary\_contact.**full\_name**<br /><br />string<br /><br />Conditionally returned                                 | Full name of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].primary\_contact.**mobile**<br /><br />string<br /><br />Conditionally returned                                     | Mobile phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| data\[].primary\_contact.**phone**<br /><br />string<br /><br />Conditionally returned                                      | Phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| data\[].primary\_contact.**title**<br /><br />string<br /><br />Conditionally returned                                      | Title of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**proprietor\_is\_beneficial\_owner**<br /><br />boolean<br /><br />Conditionally returned                          | Indicates that the proprietor or officer of the business is also a beneficial owner.<br /><br />This field is required for KYC verification if the business proprietor or officer is also a beneficial owner.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].**proprietor\_or\_officer**<br /><br />object<br /><br />Conditionally returned                                     | Contains information about the proprietor or officer of the business.<br /><br />This object is required for KYC verification of proprietors or officers of privately held businesses in the United States. This object is not required for publicly held businesses.<br /><br />**Allowable Values:**<br /><br />`alternative_names`, `birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `phone`, `ssn`, `title`                                                                                                                                                                                                                                                                                                                    |
| data\[].proprietor\_or\_officer.**alternative\_names**<br /><br />string<br /><br />Conditionally returned                  | Alternate names of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].proprietor\_or\_officer.**birth\_place**<br /><br />string<br /><br />Conditionally returned                        | Country of birth of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].proprietor\_or\_officer.**dob**<br /><br />datetime<br /><br />Conditionally returned                               | Business proprietor or officer’s date of birth.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].proprietor\_or\_officer.**email**<br /><br />string<br /><br />Conditionally returned                               | Email address of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].proprietor\_or\_officer.**first\_name**<br /><br />string<br /><br />Returned                                       | First name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].proprietor\_or\_officer.**home**<br /><br />object<br /><br />Conditionally returned                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| data\[].proprietor\_or\_officer.home.**address1**<br /><br />string<br /><br />Conditionally returned                       | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].proprietor\_or\_officer.home.**address2**<br /><br />string<br /><br />Conditionally returned                       | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].proprietor\_or\_officer.home.**city**<br /><br />string<br /><br />Conditionally returned                           | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].proprietor\_or\_officer.home.**country**<br /><br />string<br /><br />Conditionally returned                        | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].proprietor\_or\_officer.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                   | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].proprietor\_or\_officer.home.**state**<br /><br />string<br /><br />Conditionally returned                          | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].proprietor\_or\_officer.home.**zip**<br /><br />string<br /><br />Conditionally returned                            | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| data\[].proprietor\_or\_officer.**identifications**<br /><br />array of objects<br /><br />Conditionally returned           | One or more objects containing personal identifications of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| data\[].proprietor\_or\_officer.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| data\[].proprietor\_or\_officer.identifications\[].**type**<br /><br />string<br /><br />Returned                           | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| data\[].proprietor\_or\_officer.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| data\[].proprietor\_or\_officer.**last\_name**<br /><br />string<br /><br />Returned                                        | Last name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].proprietor\_or\_officer.**middle\_name**<br /><br />string<br /><br />Conditionally returned                        | Middle name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| data\[].proprietor\_or\_officer.**nationality**<br /><br />string<br /><br />Conditionally returned                         | Nationality of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                         |
| data\[].proprietor\_or\_officer.**phone**<br /><br />string<br /><br />Conditionally returned                               | Telephone number of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212<br /><br />Do not insert a 1 before the area code.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].proprietor\_or\_officer.**ssn**<br /><br />string<br /><br />Conditionally returned                                 | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Nine digits, no delimiters. `123456789`, for example.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| data\[].proprietor\_or\_officer.**title**<br /><br />string<br /><br />Conditionally returned                               | Title of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| data\[].**taxpayer\_id**<br /><br />string<br /><br />Conditionally returned                                                | Taxpayer identifier of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| data\[].**token**<br /><br />string<br /><br />Conditionally returned                                                       | Unique identifier of the business resource.<br /><br />If you do not include a token, the system generates one automatically. This token is necessary for use in other API calls, so we recommend that rather than let the system generate one, you use a simple string that is easy to remember. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                               |
| data\[].**website**<br /><br />string<br /><br />Conditionally returned                                                     | URL of the business' website.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| end\_index<br /><br />integer<br /><br />Conditionally returned                                                             | Sort order index of the last resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| is\_more<br /><br />boolean<br /><br />Conditionally returned                                                               | A value of `true` indicates that more unreturned resources exist. A value of `false` indicates that no more unreturned resources exist.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| start\_index<br /><br />integer<br /><br />Conditionally returned                                                           | Sort order index of the first resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |

<h3 id="_sample_response_body_2">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "count": 1,
  "start_index": 0,
  "end_index": 0,
  "is_more": true,
  "data": [
    {
      "token": "my_business_01",
      "active": true,
      "notes": "My notes",
      "password": "My_passw0rd",
      "phone": "5105551215",
      "website": "https://my_business.com",
      "history": "My_business_history",
      "incorporation": {
        "is_public": true,
        "stock_symbol": "MB",
        "state_of_incorporation": "CA",
        "name_registered_under": "First Middle Last",
        "address_registered_under": {
          "address1": "123 B Street",
          "city": "Oakland",
          "state": "CA",
          "postal_code": "94610",
          "country": "US"
        },
        "incorporation_type": "LLC"
      },
      "ip_address": "67.120.28.118",
      "business_name_legal": "My_legal_business_name",
      "business_name_dba": "My_fictitious_business_name",
      "office_location": {
        "address1": "123 A Street",
        "address2": "Suite 123",
        "city": "Oakland",
        "state": "CA",
        "postal_code": "94610",
        "country": "US"
      },
      "in_current_location_since": "2010-04-15T00:01:00Z",
      "date_established": "2010-04-15T00:01:00Z",
      "general_business_description": "44112 - Used Car Dealers",
      "business_type": "My_business_type",
      "international_office_locations": "Athens, Greece; Buenos Aires, Argentina",
      "identifications": [
        {
          "type": "BUSINESS_TAX_ID",
          "value": "123456789"
        }
      ],
      "duns_number": "123456789",
      "primary_contact": {
        "title": "Dr",
        "department": "My_department",
        "phone": "5105551215",
        "extension": "11",
        "fax": "5105551216",
        "email": "dr_me@my_business.com",
        "full_name": "First Middle Last",
        "mobile": "5105551217"
      },
      "proprietor_or_officer": {
        "title": "Mr",
        "dob": "1985-01-08T00:00:00Z",
        "phone": "5105551211",
        "email": "mr.myself@my.business.com",
        "first_name": "First",
        "middle_name": "Middle",
        "last_name": "Last",
        "alternative_names": "My Alternative Name",
        "ssn": "5555",
        "home": {
          "address1": "123 B Street",
          "address2": "Apt A",
          "city": "Oakland",
          "state": "CA",
          "postal_code": "94610",
          "country": "US"
        }
      },
      "created_time": "2024-10-18T21:17:03Z",
      "last_modified_time": "2024-10-19T22:48:02Z",
      "status": "ACTIVE"
    }
  ]
}
```

<h2 id="post_businesses_lookup">
  Search businesses
</h2>

**Action:** `POST`\
**Endpoint:** `/businesses/lookup`

{/* <EndpointCard
title="Search a specific business"
path="/businesses/lookup"
method="post"
/> */}

To search for one or more businesses, send a `POST` request to the `/businesses/lookup` endpoint. Include in the message body any parameters by which you want to query. This endpoint supports [field filtering](/core-api/field-filtering/) and [pagination](/core-api/sorting-and-pagination/).

<h3 id="_request_body_2">
  Request body
</h3>

| Fields                                    | Description                                                                                                                                                                                                                                                                                                                  |
| ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| dda<br /><br />string<br /><br />Required | Deposit account number of the business.<br /><br />**Allowable Values:**<br /><br />17 char max<br /><br />Send a `GET` request to `/directdeposits/accounts/{business_token}` to retrieve the deposit account number for a specific business.<br /><br />Send a `GET` request to `/businesses` to retrieve business tokens. |

<h3 id="_sample_request_body_2">
  Sample request body
</h3>

```json JSON lines wrap theme={null}
{
  "dda": "2129923205648"
}
```

<h3 id="_response_body_3">
  Response body
</h3>

| Fields                                                                                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| account\_holder\_group\_token<br /><br />string<br /><br />Conditionally returned                                   | Existing account holder group token that associates the specified account holder group with the business. Send a `GET` request to `/accountholdergroups` to retrieve account holder group tokens.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| active<br /><br />boolean<br /><br />Conditionally returned                                                         | Specifies if the business is in the `ACTIVE` state on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| attestation\_consent<br /><br />boolean<br /><br />Conditionally returned                                           | Indicates that the attester agrees that the information provided is correct and truthful.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| attestation\_date<br /><br />datetime<br /><br />Conditionally returned                                             | Timestamp of the attestation.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| attester\_name<br /><br />string<br /><br />Conditionally returned                                                  | Name of the attester for KYC verification.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| attester\_title<br /><br />string<br /><br />Conditionally returned                                                 | Title of the attester for KYC verification.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner1.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner1.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner1.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner1.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner1.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner1.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner2.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner2.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner2.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner2.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner2.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner2.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner3.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner3.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner3.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner3.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner3.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner3.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner4.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner4.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner4.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner4.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner4.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner4.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| business\_name\_dba<br /><br />string<br /><br />Conditionally returned                                             | Fictitious business name ("Doing Business As" or DBA).<br /><br />This field is required for KYC verification (US-based accounts only). If your business does not use a fictitious business name, enter your legal business name again in this field.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                  |
| business\_name\_legal<br /><br />string<br /><br />Conditionally returned                                           | Legal name of business.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| business\_type<br /><br />string<br /><br />Conditionally returned                                                  | Indicates the type of business, for example B2B (business-to-business) or B2C (business-to-consumer).<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| date\_established<br /><br />datetime<br /><br />Conditionally returned                                             | Date when the business was established.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| duns\_number<br /><br />string<br /><br />Conditionally returned                                                    | Data Universal Numbering System (DUNS) number of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| general\_business\_description<br /><br />string<br /><br />Conditionally returned                                  | Required for KYC verification (US-based cardholders only). Business description must adhere to the <a href="https://www.census.gov/naics/" target="_blank" rel="noopener">NAICS standard</a>, as defined by the United States Census Bureau. You must provide at least the description; NAICS codes are optional. For example, `Used Car Dealers` or `44112 - Used Car Dealers`.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                            |
| history<br /><br />string<br /><br />Conditionally returned                                                         | History of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| identifications<br /><br />array of objects<br /><br />Conditionally returned                                       | One or more objects containing identifications associated with the business.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned                         | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| identifications\[].**type**<br /><br />string<br /><br />Returned                                                   | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                                    | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| in\_current\_location\_since<br /><br />datetime<br /><br />Conditionally returned                                  | Date on which the business office opened in its current location.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| incorporation<br /><br />object<br /><br />Conditionally returned                                                   | Contains information about the organizational structure of the business.<br /><br />This object is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`address_registered_under`, `incorporation_type`, `is_public`, `is_regulated_entity`, `name_registered_under`, `state_of_incorporation`, `stock_symbol`                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**address\_registered\_under**<br /><br />object<br /><br />Conditionally returned                    | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| incorporation.address\_registered\_under.**address1**<br /><br />string<br /><br />Conditionally returned           | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.address\_registered\_under.**address2**<br /><br />string<br /><br />Conditionally returned           | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**city**<br /><br />string<br /><br />Conditionally returned               | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| incorporation.address\_registered\_under.**country**<br /><br />string<br /><br />Conditionally returned            | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.address\_registered\_under.**postal\_code**<br /><br />string<br /><br />Conditionally returned       | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| incorporation.address\_registered\_under.**state**<br /><br />string<br /><br />Conditionally returned              | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**zip**<br /><br />string<br /><br />Conditionally returned                | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**incorporation\_type**<br /><br />string<br /><br />Conditionally returned                           | Organizational structure of the business, such as corporation or sole proprietorship.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`LLC`, `CORPORATION`, `SOLE_PROPRIETORSHIP`, `PARTNERSHIP`, `COOPERATIVE`, `OTHER`, `FINANCIAL_OR_CREDIT_INSTITUTION`, `FOUNDATION`, `ASSOCIATION`, `CHARITY`, `TRUST`                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.**is\_public**<br /><br />boolean<br /><br />Conditionally returned                                   | A value of `true` indicates that the business is publicly held.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.**is\_regulated\_entity**<br /><br />boolean<br /><br />Conditionally returned                        | A value of `true` indicates that the business is a regulated entity.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| incorporation.**name\_registered\_under**<br /><br />string<br /><br />Conditionally returned                       | Name under which the business is registered.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| incorporation.**state\_of\_incorporation**<br /><br />string<br /><br />Conditionally returned                      | State, province, territory, or federation where the business is incorporated.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, or federal abbreviation</a> required for KYC verification (`CA` for California or `CAN` for Canada, for example); 255 char max otherwise                                                                                                                                                                                                                                                                                |
| incorporation.**stock\_symbol**<br /><br />string<br /><br />Conditionally returned                                 | Business stock symbol.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| international\_office\_locations<br /><br />string<br /><br />Conditionally returned                                | Locations of the business' offices outside the US.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ip\_address<br /><br />string<br /><br />Conditionally returned                                                     | IP address of the business.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| metadata<br /><br />object<br /><br />Conditionally returned                                                        | Associates any additional metadata you provide with the business.<br /><br />**Allowable Values:**<br /><br />You can define the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| notes<br /><br />string<br /><br />Conditionally returned                                                           | Any additional information pertaining to the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| office\_location<br /><br />object<br /><br />Conditionally returned                                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| office\_location.**address1**<br /><br />string<br /><br />Conditionally returned                                   | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| office\_location.**address2**<br /><br />string<br /><br />Conditionally returned                                   | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**city**<br /><br />string<br /><br />Conditionally returned                                       | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| office\_location.**country**<br /><br />string<br /><br />Conditionally returned                                    | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| office\_location.**postal\_code**<br /><br />string<br /><br />Conditionally returned                               | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| office\_location.**state**<br /><br />string<br /><br />Conditionally returned                                      | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**zip**<br /><br />string<br /><br />Conditionally returned                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| password<br /><br />string<br /><br />Conditionally returned                                                        | Password for the business account on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />- Must contain at least one numeral<br /><br />- Must contain at least one lowercase letter<br /><br />- Must contain at least one uppercase letter<br /><br />- Must contain at least one of these symbols:<br />`@``#``$``%``!``^``&``*``(``)`<br />`\\``_``+``~``-``=``[``]``\{``}`<br />`,``;``:``'``"``.``/``<``>``?`<code>\`</code>                                                                                                                                                                                                                                                                                                                              |
| phone<br /><br />string<br /><br />Conditionally returned                                                           | 10-digit telephone number of business.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| primary\_contact<br /><br />object<br /><br />Conditionally returned                                                | Describes the business' primary contact person.<br /><br />**Allowable Values:**<br /><br />`department`, `email`, `extension`, `fax`, `full_name`, `mobile`, `phone`, `title`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**department**<br /><br />string<br /><br />Conditionally returned                                 | Business department of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| primary\_contact.**email**<br /><br />string<br /><br />Conditionally returned                                      | Email address of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**extension**<br /><br />string<br /><br />Conditionally returned                                  | Phone extension of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| primary\_contact.**fax**<br /><br />string<br /><br />Conditionally returned                                        | Fax number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| primary\_contact.**full\_name**<br /><br />string<br /><br />Conditionally returned                                 | Full name of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| primary\_contact.**mobile**<br /><br />string<br /><br />Conditionally returned                                     | Mobile phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| primary\_contact.**phone**<br /><br />string<br /><br />Conditionally returned                                      | Phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| primary\_contact.**title**<br /><br />string<br /><br />Conditionally returned                                      | Title of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_is\_beneficial\_owner<br /><br />boolean<br /><br />Conditionally returned                              | Indicates that the proprietor or officer of the business is also a beneficial owner.<br /><br />This field is required for KYC verification if the business proprietor or officer is also a beneficial owner.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer<br /><br />object<br /><br />Conditionally returned                                         | Contains information about the proprietor or officer of the business.<br /><br />This object is required for KYC verification of proprietors or officers of privately held businesses in the United States. This object is not required for publicly held businesses.<br /><br />**Allowable Values:**<br /><br />`alternative_names`, `birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `phone`, `ssn`, `title`                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**alternative\_names**<br /><br />string<br /><br />Conditionally returned                  | Alternate names of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.**birth\_place**<br /><br />string<br /><br />Conditionally returned                        | Country of birth of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**dob**<br /><br />datetime<br /><br />Conditionally returned                               | Business proprietor or officer’s date of birth.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**email**<br /><br />string<br /><br />Conditionally returned                               | Email address of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.**first\_name**<br /><br />string<br /><br />Returned                                       | First name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**home**<br /><br />object<br /><br />Conditionally returned                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| proprietor\_or\_officer.home.**address1**<br /><br />string<br /><br />Conditionally returned                       | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.home.**address2**<br /><br />string<br /><br />Conditionally returned                       | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**city**<br /><br />string<br /><br />Conditionally returned                           | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.home.**country**<br /><br />string<br /><br />Conditionally returned                        | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                   | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.home.**state**<br /><br />string<br /><br />Conditionally returned                          | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**zip**<br /><br />string<br /><br />Conditionally returned                            | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| proprietor\_or\_officer.**identifications**<br /><br />array of objects<br /><br />Conditionally returned           | One or more objects containing personal identifications of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**type**<br /><br />string<br /><br />Returned                           | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| proprietor\_or\_officer.**last\_name**<br /><br />string<br /><br />Returned                                        | Last name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.**middle\_name**<br /><br />string<br /><br />Conditionally returned                        | Middle name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**nationality**<br /><br />string<br /><br />Conditionally returned                         | Nationality of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                         |
| proprietor\_or\_officer.**phone**<br /><br />string<br /><br />Conditionally returned                               | Telephone number of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212<br /><br />Do not insert a 1 before the area code.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**ssn**<br /><br />string<br /><br />Conditionally returned                                 | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Nine digits, no delimiters. `123456789`, for example.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**title**<br /><br />string<br /><br />Conditionally returned                               | Title of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| taxpayer\_id<br /><br />string<br /><br />Conditionally returned                                                    | Taxpayer identifier of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| token<br /><br />string<br /><br />Conditionally returned                                                           | Unique identifier of the business resource.<br /><br />If you do not include a token, the system generates one automatically. This token is necessary for use in other API calls, so we recommend that rather than let the system generate one, you use a simple string that is easy to remember. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                               |
| website<br /><br />string<br /><br />Conditionally returned                                                         | URL of the business' website.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |

<h3 id="_sample_response_body_3">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "297aa1a7-f3c9-46eb-9e0a-54f8bce0c189",
  "active": true,
  "phone": "5105551218",
  "metadata": {
    "my_name_1": "my_value_1",
    "my_name_2": "my_value_2"
  },
  "account_holder_group_token": "DEFAULT_AHG",
  "created_time": "2024-06-20T00:17:48Z",
  "last_modified_time": "2024-06-20T00:17:48Z",
  "business_name_legal": "My_legal_business_name",
  "business_name_dba": "My_fictitious_business_name",
  "office_location": {
    "address1": "111 Main St",
    "address2": "Suite B",
    "city": "Berkeley",
    "state": "CA",
    "postal_code": "94702",
    "country": "USA"
  },
  "date_established": "2010-01-01T00:01:00Z",
  "business_type": "other",
  "duns_number": "22344566",
  "primary_contact": {
    "full_name": "First Middle Last",
    "title": "Mr.",
    "department": "Accounts Payable",
    "phone": "5105551218",
    "extension": "234",
    "fax": "5105551219",
    "mobile": "5105551220",
    "email": "me@my.company.com"
  },
  "incorporation": {
    "state_of_incorporation": "CA,",
    "incorporation_type": "CORPORATION"
  },
  "identifications": [
    {
      "type": "BUSINESS_TAX_ID",
      "value": "11-1111111"
    }
  ]
}
```

<h2 id="post_businesses_token_directors">
  Create business director
</h2>

**Action:** `POST`\
**Endpoint:** `/businesses/{business_token}/directors`

{/* <EndpointCard
title="Create business director"
path="/businesses/{business_token}/directors"
method="post"
/> */}

Create a business director resource.

<h3 id="_url_path_parameters">
  URL path parameters
</h3>

| Fields                                                | Description                                                                                                       |
| ----------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| business\_token<br /><br />string<br /><br />Required | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing `business` token |

<h3 id="_request_body_3">
  Request body
</h3>

| Fields                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| active<br /><br />boolean<br /><br />Optional                                 | Indicates whether the business director is active.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| address<br /><br />object<br /><br />Optional                                 | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| address.**address1**<br /><br />string<br /><br />Optional                    | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| address.**address2**<br /><br />string<br /><br />Optional                    | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| address.**city**<br /><br />string<br /><br />Optional                        | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| address.**country**<br /><br />string<br /><br />Optional                     | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| address.**postal\_code**<br /><br />string<br /><br />Optional                | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| address.**state**<br /><br />string<br /><br />Optional                       | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| address.**zip**<br /><br />string<br /><br />Optional                         | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| birth\_date<br /><br />string<br /><br />Optional                             | Business director’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| email<br /><br />string<br /><br />Optional                                   | Email address of the business director.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| first\_name<br /><br />string<br /><br />Optional                             | First or given name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| identifications<br /><br />array of objects<br /><br />Optional               | One or more objects containing personal identifications of the business director.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| identifications\[].**type**<br /><br />string<br /><br />Required             | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE` |
| identifications\[].**value**<br /><br />string<br /><br />Optional            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| last\_name<br /><br />string<br /><br />Optional                              | Last or family name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| middle\_name<br /><br />string<br /><br />Optional                            | Middle name of the business director.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| nationality<br /><br />string<br /><br />Optional                             | Nationality of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| phone<br /><br />string<br /><br />Optional                                   | Full phone number of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| place\_of\_birth<br /><br />string<br /><br />Optional                        | Business director’s place of birth.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| title<br /><br />string<br /><br />Optional                                   | Title of the business director.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| token<br /><br />string<br /><br />Optional                                   | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |

<h3 id="_response_body_4">
  Response body
</h3>

| Fields                                                                                      | Description                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| active<br /><br />boolean<br /><br />Conditionally returned                                 | Indicates whether the business director is active.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                   |
| address<br /><br />object<br /><br />Conditionally returned                                 | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                       |
| address.**address1**<br /><br />string<br /><br />Conditionally returned                    | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                   |
| address.**address2**<br /><br />string<br /><br />Conditionally returned                    | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                          |
| address.**city**<br /><br />string<br /><br />Conditionally returned                        | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                     |
| address.**country**<br /><br />string<br /><br />Conditionally returned                     | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                  |
| address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                              |
| address.**state**<br /><br />string<br /><br />Conditionally returned                       | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                            |
| address.**zip**<br /><br />string<br /><br />Conditionally returned                         | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                   |
| birth\_date<br /><br />string<br /><br />Conditionally returned                             | Business director’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                        |
| created\_time<br /><br />datetime<br /><br />Returned                                       | Date and time when the business director resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                  |
| email<br /><br />string<br /><br />Conditionally returned                                   | Email address of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                 |
| first\_name<br /><br />string<br /><br />Conditionally returned                             | First or given name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| identifications<br /><br />array of objects<br /><br />Conditionally returned               | One or more objects containing personal identifications of the business director.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects               |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                             |
| identifications\[].**type**<br /><br />string<br /><br />Conditionally returned             | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE` |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                              |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                | Date and time when the business director resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                            |
| last\_name<br /><br />string<br /><br />Conditionally returned                              | Last or family name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| middle\_name<br /><br />string<br /><br />Conditionally returned                            | Middle name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| nationality<br /><br />string<br /><br />Conditionally returned                             | Nationality of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| phone<br /><br />string<br /><br />Conditionally returned                                   | Full phone number of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                             |
| place\_of\_birth<br /><br />string<br /><br />Conditionally returned                        | Business director’s place of birth.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                     |
| title<br /><br />string<br /><br />Conditionally returned                                   | Title of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                         |
| token<br /><br />string<br /><br />Conditionally returned                                   | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                     |

<h2 id="get_business_directors_business_token">
  List business directors
</h2>

**Action:** `GET`\
**Endpoint:** `/businesses/{business_token}/directors`

{/* <EndpointCard
title="List business directors"
path="/businesses/{business_token}/directors"
method="get"
/> */}

List resources for the directors of a business.

<h3 id="_url_path_parameters_2">
  URL path parameters
</h3>

| Fields                                                | Description                                                                                                       |
| ----------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| business\_token<br /><br />string<br /><br />Required | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing `business` token |

<h3 id="_url_query_parameters_2">
  URL query parameters
</h3>

| Fields                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                          |
| --------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of business director resources to retrieve.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                                                                                                                                  |
| start\_index<br /><br />integer<br /><br />Optional | Sort order index of the first resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                |
| fields<br /><br />string<br /><br />Optional        | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank                                                                                                                                                                                                                      |
| sort\_by<br /><br />string<br /><br />Optional      | Field on which to sort. Use any field in the resource model, or one of the system fields `lastModifiedTime` or `createdTime`. Prefix the field name with a hyphen (`-`) to sort in descending order. Omit the hyphen to sort in ascending order.<br /><br />**Allowable Values:**<br /><br />`createdTime`, `lastModifiedTime`, or any field in the resource model<br /><br />**Default value:**<br />`-createdTime` |

<h3 id="_response_body_5">
  Response body
</h3>

| Fields                                                                                      | Description                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| active<br /><br />boolean<br /><br />Conditionally returned                                 | Indicates whether the business director is active.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                   |
| address<br /><br />object<br /><br />Conditionally returned                                 | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                       |
| address.**address1**<br /><br />string<br /><br />Conditionally returned                    | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                   |
| address.**address2**<br /><br />string<br /><br />Conditionally returned                    | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                          |
| address.**city**<br /><br />string<br /><br />Conditionally returned                        | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                     |
| address.**country**<br /><br />string<br /><br />Conditionally returned                     | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                  |
| address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                              |
| address.**state**<br /><br />string<br /><br />Conditionally returned                       | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                            |
| address.**zip**<br /><br />string<br /><br />Conditionally returned                         | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                   |
| birth\_date<br /><br />string<br /><br />Conditionally returned                             | Business director’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                        |
| created\_time<br /><br />datetime<br /><br />Returned                                       | Date and time when the business director resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                  |
| email<br /><br />string<br /><br />Conditionally returned                                   | Email address of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                 |
| first\_name<br /><br />string<br /><br />Conditionally returned                             | First or given name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| identifications<br /><br />array of objects<br /><br />Conditionally returned               | One or more objects containing personal identifications of the business director.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects               |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                             |
| identifications\[].**type**<br /><br />string<br /><br />Conditionally returned             | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE` |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                              |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                | Date and time when the business director resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                            |
| last\_name<br /><br />string<br /><br />Conditionally returned                              | Last or family name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| middle\_name<br /><br />string<br /><br />Conditionally returned                            | Middle name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| nationality<br /><br />string<br /><br />Conditionally returned                             | Nationality of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| phone<br /><br />string<br /><br />Conditionally returned                                   | Full phone number of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                             |
| place\_of\_birth<br /><br />string<br /><br />Conditionally returned                        | Business director’s place of birth.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                     |
| title<br /><br />string<br /><br />Conditionally returned                                   | Title of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                         |
| token<br /><br />string<br /><br />Conditionally returned                                   | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                     |

<h2 id="put_businesses_token_business_director_token">
  Update business director
</h2>

**Action:** `PUT`\
**Endpoint:** `/businesses/{business_token}/directors/{token}`

{/* <EndpointCard
title="Update business director"
path="/businesses/{business_token}/directors/{token}"
method="put"
/> */}

Update a business director resource.

<h3 id="_url_path_parameters_3">
  URL path parameters
</h3>

| Fields                                                | Description                                                                                                                       |
| ----------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| business\_token<br /><br />string<br /><br />Required | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing `business` token                 |
| token<br /><br />string<br /><br />Required           | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />Existing business director token |

<h3 id="_request_body_4">
  Request body
</h3>

| Fields                                                                        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| active<br /><br />boolean<br /><br />Optional                                 | Indicates whether the business director is active.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| address<br /><br />object<br /><br />Optional                                 | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| address.**address1**<br /><br />string<br /><br />Optional                    | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| address.**address2**<br /><br />string<br /><br />Optional                    | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| address.**city**<br /><br />string<br /><br />Optional                        | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| address.**country**<br /><br />string<br /><br />Optional                     | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| address.**postal\_code**<br /><br />string<br /><br />Optional                | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| address.**state**<br /><br />string<br /><br />Optional                       | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| address.**zip**<br /><br />string<br /><br />Optional                         | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| birth\_date<br /><br />string<br /><br />Optional                             | Business director’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| email<br /><br />string<br /><br />Optional                                   | Email address of the business director.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| first\_name<br /><br />string<br /><br />Optional                             | First or given name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| identifications<br /><br />array of objects<br /><br />Optional               | One or more objects containing personal identifications of the business director.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| identifications\[].**type**<br /><br />string<br /><br />Required             | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE` |
| identifications\[].**value**<br /><br />string<br /><br />Optional            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| last\_name<br /><br />string<br /><br />Optional                              | Last or family name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| middle\_name<br /><br />string<br /><br />Optional                            | Middle name of the business director.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| nationality<br /><br />string<br /><br />Optional                             | Nationality of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| phone<br /><br />string<br /><br />Optional                                   | Full phone number of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| place\_of\_birth<br /><br />string<br /><br />Optional                        | Business director’s place of birth.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| title<br /><br />string<br /><br />Optional                                   | Title of the business director.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| token<br /><br />string<br /><br />Optional                                   | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |

<h3 id="_response_body_6">
  Response body
</h3>

| Fields                                                                                      | Description                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| active<br /><br />boolean<br /><br />Conditionally returned                                 | Indicates whether the business director is active.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                   |
| address<br /><br />object<br /><br />Conditionally returned                                 | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                       |
| address.**address1**<br /><br />string<br /><br />Conditionally returned                    | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                   |
| address.**address2**<br /><br />string<br /><br />Conditionally returned                    | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                          |
| address.**city**<br /><br />string<br /><br />Conditionally returned                        | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                     |
| address.**country**<br /><br />string<br /><br />Conditionally returned                     | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                  |
| address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                              |
| address.**state**<br /><br />string<br /><br />Conditionally returned                       | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                            |
| address.**zip**<br /><br />string<br /><br />Conditionally returned                         | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                   |
| birth\_date<br /><br />string<br /><br />Conditionally returned                             | Business director’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                        |
| created\_time<br /><br />datetime<br /><br />Returned                                       | Date and time when the business director resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                  |
| email<br /><br />string<br /><br />Conditionally returned                                   | Email address of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                 |
| first\_name<br /><br />string<br /><br />Conditionally returned                             | First or given name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| identifications<br /><br />array of objects<br /><br />Conditionally returned               | One or more objects containing personal identifications of the business director.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects               |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                             |
| identifications\[].**type**<br /><br />string<br /><br />Conditionally returned             | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE` |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                              |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                | Date and time when the business director resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                            |
| last\_name<br /><br />string<br /><br />Conditionally returned                              | Last or family name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| middle\_name<br /><br />string<br /><br />Conditionally returned                            | Middle name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| nationality<br /><br />string<br /><br />Conditionally returned                             | Nationality of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| phone<br /><br />string<br /><br />Conditionally returned                                   | Full phone number of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                             |
| place\_of\_birth<br /><br />string<br /><br />Conditionally returned                        | Business director’s place of birth.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                     |
| title<br /><br />string<br /><br />Conditionally returned                                   | Title of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                         |
| token<br /><br />string<br /><br />Conditionally returned                                   | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                     |

<h2 id="get_business_director_token">
  Retrieve business director
</h2>

**Action:** `GET`\
**Endpoint:** `/businesses/{business_token}/directors/{token}`

{/* <EndpointCard
title="Retrieve business director"
path="/businesses/{business_token}/directors/{token}"
method="get"
/> */}

Retrieve a business director resource.

<h3 id="_url_path_parameters_4">
  URL path parameters
</h3>

| Fields                                                | Description                                                                                                                       |
| ----------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| business\_token<br /><br />string<br /><br />Required | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing `business` token                 |
| token<br /><br />string<br /><br />Required           | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />Existing business director token |

<h3 id="_url_query_parameters_3">
  URL query parameters
</h3>

| Fields                                       | Description                                                                                                                                                                                     |
| -------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| fields<br /><br />string<br /><br />Optional | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |

<h3 id="_response_body_7">
  Response body
</h3>

| Fields                                                                                      | Description                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| active<br /><br />boolean<br /><br />Conditionally returned                                 | Indicates whether the business director is active.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                   |
| address<br /><br />object<br /><br />Conditionally returned                                 | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                       |
| address.**address1**<br /><br />string<br /><br />Conditionally returned                    | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                   |
| address.**address2**<br /><br />string<br /><br />Conditionally returned                    | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                          |
| address.**city**<br /><br />string<br /><br />Conditionally returned                        | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                     |
| address.**country**<br /><br />string<br /><br />Conditionally returned                     | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                  |
| address.**postal\_code**<br /><br />string<br /><br />Conditionally returned                | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                              |
| address.**state**<br /><br />string<br /><br />Conditionally returned                       | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                            |
| address.**zip**<br /><br />string<br /><br />Conditionally returned                         | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                   |
| birth\_date<br /><br />string<br /><br />Conditionally returned                             | Business director’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                        |
| created\_time<br /><br />datetime<br /><br />Returned                                       | Date and time when the business director resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                  |
| email<br /><br />string<br /><br />Conditionally returned                                   | Email address of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                 |
| first\_name<br /><br />string<br /><br />Conditionally returned                             | First or given name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| identifications<br /><br />array of objects<br /><br />Conditionally returned               | One or more objects containing personal identifications of the business director.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects               |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                             |
| identifications\[].**type**<br /><br />string<br /><br />Conditionally returned             | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE` |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                              |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                | Date and time when the business director resource was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                            |
| last\_name<br /><br />string<br /><br />Conditionally returned                              | Last or family name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                           |
| middle\_name<br /><br />string<br /><br />Conditionally returned                            | Middle name of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| nationality<br /><br />string<br /><br />Conditionally returned                             | Nationality of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                   |
| phone<br /><br />string<br /><br />Conditionally returned                                   | Full phone number of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                             |
| place\_of\_birth<br /><br />string<br /><br />Conditionally returned                        | Business director’s place of birth.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                     |
| title<br /><br />string<br /><br />Conditionally returned                                   | Title of the business director.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                         |
| token<br /><br />string<br /><br />Conditionally returned                                   | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                     |

<h2 id="get_business_director_token_ssn">
  Retrieve business director tax identifier
</h2>

**Action:** `GET`\
**Endpoint:** `/businesses/{business_token}/directors/{token}/identifications`

{/* <EndpointCard
title="Retrieve business director tax identifier"
path="/businesses/{business_token}/directors/{token}/identifications"
method="get"
/> */}

Retrieve the tax identifier of a business director.

<h3 id="_url_path_parameters_5">
  URL path parameters
</h3>

| Fields                                                | Description                                                                                                                       |
| ----------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| business\_token<br /><br />string<br /><br />Required | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing `business` token                 |
| token<br /><br />string<br /><br />Required           | Unique identifier of the business director resource.<br /><br />**Allowable Values:**<br /><br />Existing business director token |

<h3 id="_url_query_parameters_4">
  URL query parameters
</h3>

| Fields                                           | Description                                                                                                                                                                                                                                                                                                                                                                                                                           |
| ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| full\_ssn<br /><br />boolean<br /><br />Optional | To return the full identification number, set to `true`. To return only the last four digits, set to `false`. If the `identifications` array contains only the last four digits of the identification number, the `/businesses/{business_token}/directors/{token}/identifications` endpoint will return only the last four digits regardless of the `full_ssn` parameter.<br /><br />**Allowable Values:**<br /><br />`true`, `false` |

<h3 id="_response_body_8">
  Response body
</h3>

| Fields                                                  | Description                                                                                                                                |
| ------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| nin<br /><br />string<br /><br />Conditionally returned | National Identification Number (NIN).<br /><br />**Allowable Values:**<br /><br />255 char max                                             |
| sin<br /><br />string<br /><br />Conditionally returned | Social Insurance Number (SIN).<br /><br />**Allowable Values:**<br /><br />255 char max                                                    |
| ssn<br /><br />string<br /><br />Conditionally returned | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN).<br /><br />**Allowable Values:**<br /><br />255 char max |
| tin<br /><br />string<br /><br />Conditionally returned | Taxpayer Identification Number (TIN).<br /><br />**Allowable Values:**<br /><br />255 char max                                             |

<h2 id="get_businesses_parenttoken_children">
  List business children
</h2>

**Action:** `GET`\
**Endpoint:** `/businesses/{parent_token}/children`

{/* <EndpointCard
title="List business children"
path="/businesses/{parent_token}/children"
method="get"
/> */}

To return an array of all child cardholders of a particular business, send a `GET` request to the `/businesses/{parent_token}/children` endpoint. Include the `parent_token` as a URL path parameter.

This endpoint supports [field filtering](/core-api/field-filtering/).

<h3 id="_url_path_parameters_6">
  URL path parameters
</h3>

| Fields                                              | Description                                                                                                            |
| --------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| parent\_token<br /><br />string<br /><br />Required | Unique identifier of the parent business.<br /><br />**Allowable Values:**<br /><br />Existing business resource token |

<h3 id="_url_query_parameters_5">
  URL query parameters
</h3>

| Fields                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                               |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Optional        | Number of child cardholders to retrieve.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                                                                                                                                                 |
| start\_index<br /><br />integer<br /><br />Optional | Sort order index of the first resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                     |
| fields<br /><br />string<br /><br />Optional        | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank                                                                                                                                                                                                                           |
| sort\_by<br /><br />string<br /><br />Optional      | Field on which to sort. Use any field in the resource model, or one of the system fields `lastModifiedTime` or `createdTime`. Prefix the field name with a hyphen (`-`) to sort in descending order. Omit the hyphen to sort in ascending order.<br /><br />**Allowable Values:**<br /><br />`createdTime`, `lastModifiedTime`, or any field in the resource model<br /><br />**Default value:**<br />`-lastModifiedTime` |

<h3 id="_response_body_9">
  Response body
</h3>

| Fields                                                                                                         | Description                                                                                                                                                                                                                                                                                                                                                                      |
| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| count<br /><br />integer<br /><br />Conditionally returned                                                     | Number of user resources to retrieve.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />1-10                                                                                                                                                                                                          |
| data<br /><br />array of objects<br /><br />Conditionally returned                                             | Array of user objects.<br /><br />Objects are returned as appropriate to your query.<br /><br />**Allowable Values:**<br /><br />One or more user objects                                                                                                                                                                                                                        |
| data\[].**account\_holder\_group\_token**<br /><br />string<br /><br />Conditionally returned                  | Associates the specified account holder group with the cardholder.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                       |
| data\[].**active**<br /><br />boolean<br /><br />Conditionally returned                                        | Specifies if the cardholder is in the `ACTIVE` state on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                        |
| data\[].**address1**<br /><br />string<br /><br />Conditionally returned                                       | Cardholder’s address.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                   |
| data\[].**address2**<br /><br />string<br /><br />Conditionally returned                                       | Additional address information for the cardholder.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                      |
| data\[].**authentication**<br /><br />object<br /><br />Conditionally returned                                 | Contains the cardholder’s email address and password information.<br /><br />**Allowable Values:**<br /><br />`email_verified`, `email_verified_time`, `last_password_update_channel`, `last_password_update_time`                                                                                                                                                               |
| data\[].authentication.**email\_verified**<br /><br />boolean<br /><br />Conditionally returned                | Specifies whether the email address has been verified.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                               |
| data\[].authentication.**email\_verified\_time**<br /><br />datetime<br /><br />Conditionally returned         | Date and time when the email address was verified.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                         |
| data\[].authentication.**last\_password\_update\_channel**<br /><br />string<br /><br />Conditionally returned | Specifies the channel through which the password was last changed.<br /><br />**Allowable Values:**<br /><br />`USER_CHANGE`, `USER_RESET`                                                                                                                                                                                                                                       |
| data\[].authentication.**last\_password\_update\_time**<br /><br />datetime<br /><br />Conditionally returned  | Date and time when the password was last changed.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                          |
| data\[].**birth\_date**<br /><br />string<br /><br />Conditionally returned                                    | Cardholder’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                       |
| data\[].**birth\_place**<br /><br />string<br /><br />Conditionally returned                                   | Country where the cardholder was born.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>. |
| data\[].**business\_token**<br /><br />string<br /><br />Conditionally returned                                | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing business resource token                                                                                                                                                                                                                                                         |
| data\[].**city**<br /><br />string<br /><br />Conditionally returned                                           | City where the cardholder resides.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                       |
| data\[].**company**<br /><br />string<br /><br />Conditionally returned                                        | Company name.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                           |
| data\[].**corporate\_card\_holder**<br /><br />boolean<br /><br />Conditionally returned                       | Specifies if the cardholder holds a corporate card.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                  |
| data\[].**country**<br /><br />string<br /><br />Conditionally returned                                        | Country where the cardholder resides.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                    |
| data\[].**created\_time**<br /><br />datetime<br /><br />Returned                                              | Date and time when the resource was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                       |
| data\[].**email**<br /><br />string<br /><br />Conditionally returned                                          | Valid email address of the cardholder.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                                                   |
| data\[].**first\_name**<br /><br />string<br /><br />Conditionally returned                                    | Cardholder’s first name.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                 |
| data\[].**gender**<br /><br />string<br /><br />Conditionally returned                                         | Gender of the cardholder.<br /><br />**Allowable Values:**<br /><br />`F`, `M`                                                                                                                                                                                                                                                                                                   |
| data\[].**honorific**<br /><br />string<br /><br />Conditionally returned                                      | Cardholder’s title or prefix: Dr., Miss, Mr., Ms., and so on.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                            |
| data\[].**id\_card\_expiration\_date**<br /><br />string<br /><br />Conditionally returned                     | Expiration date of the cardholder’s identification.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                               |
| data\[].**id\_card\_number**<br /><br />string<br /><br />Conditionally returned                               | Cardholder’s identification card number.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                |
| data\[].**identifications**<br /><br />array of objects<br /><br />Conditionally returned                      | One or more objects containing identifications associated with the cardholder.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                  |
| data\[].identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned            | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                             |
| data\[].identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                        | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| data\[].identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                       | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                              |
| data\[].**ip\_address**<br /><br />string<br /><br />Conditionally returned                                    | Cardholder’s IP address.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                                                                                                                 |
| data\[].**last\_modified\_time**<br /><br />datetime<br /><br />Returned                                       | Date and time when the resource was last updated, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                  |
| data\[].**last\_name**<br /><br />string<br /><br />Conditionally returned                                     | Cardholder’s last name.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                  |
| data\[].**metadata**<br /><br />object<br /><br />Conditionally returned                                       | Associates any additional metadata you provide with the cardholder.<br /><br />**Allowable Values:**<br /><br />You can define the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                 |
| data\[].**middle\_name**<br /><br />string<br /><br />Conditionally returned                                   | Cardholder’s middle name.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                                |
| data\[].**nationality**<br /><br />string<br /><br />Conditionally returned                                    | Cardholder’s nationality.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                               |
| data\[].**notes**<br /><br />string<br /><br />Conditionally returned                                          | Any additional information pertaining to the cardholder.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                |
| data\[].**parent\_token**<br /><br />string<br /><br />Conditionally returned                                  | Unique identifier of the parent user or business resource.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                |
| data\[].**passport\_expiration\_date**<br /><br />string<br /><br />Conditionally returned                     | Expiration date of the cardholder’s passport.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                     |
| data\[].**passport\_number**<br /><br />string<br /><br />Conditionally returned                               | Cardholder’s passport number.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                                                                                            |
| data\[].**password**<br /><br />string<br /><br />Conditionally returned                                       | Password to the cardholder’s user account on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                                                                                                       |
| data\[].**phone**<br /><br />string<br /><br />Conditionally returned                                          | Cardholder’s telephone number.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                          |
| data\[].**postal\_code**<br /><br />string<br /><br />Conditionally returned                                   | Postal code of the cardholder’s address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                                 |
| data\[].**ssn**<br /><br />string<br /><br />Conditionally returned                                            | Cardholder’s Social Security Number (SSN).<br /><br />**Allowable Values:**<br /><br />Nine digits only, no delimiters.                                                                                                                                                                                                                                                          |
| data\[].**state**<br /><br />string<br /><br />Conditionally returned                                          | State or province where the cardholder resides.<br /><br />**Allowable Values:**<br /><br />2 char max                                                                                                                                                                                                                                                                           |
| data\[].**status**<br /><br />string<br /><br />Conditionally returned                                         | Specifies the status of the cardholder on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />`UNVERIFIED`, `LIMITED`, `ACTIVE`, `SUSPENDED`, `CLOSED`                                                                                                                                                                                                             |
| data\[].**title**<br /><br />string<br /><br />Conditionally returned                                          | Professional title of the cardholder, such as Chief Comptroller.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                        |
| data\[].**token**<br /><br />string<br /><br />Conditionally returned                                          | Unique identifier of the cardholder.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                      |
| data\[].**uses\_parent\_account**<br /><br />boolean<br /><br />Conditionally returned                         | Indicates whether the child shares balances with the parent (`true`), or the child’s balances are independent of the parent (`false`).<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                               |
| data\[].**zip**<br /><br />string<br /><br />Conditionally returned                                            | United States ZIP code of the cardholder’s address.<br /><br />**Allowable Values:**<br /><br />10 char max                                                                                                                                                                                                                                                                      |
| end\_index<br /><br />integer<br /><br />Conditionally returned                                                | Sort order index of the first resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                           |
| is\_more<br /><br />boolean<br /><br />Conditionally returned                                                  | A value of `true` indicates that more unreturned resources exist. A value of `false` indicates that no more unreturned resources exist.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                             |
| start\_index<br /><br />integer<br /><br />Conditionally returned                                              | Sort order index of the first resource in the returned array.<br /><br />This field is returned if there are resources in your returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                           |

<h3 id="_sample_response_body_4">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "count": 1,
  "start_index": 0,
  "end_index": 0,
  "is_more": false,
  "data": [
    {
      "token": "my_child_user_01",
      "active": true,
      "password": "My_passw0rd",
      "phone": "510-555-1111",
      "metadata": {
        "my_name_1": "my_value_1",
        "my_name_2": "my_value_2"
      },
      "gender": "F",
      "email": "my_child_user_01@gmail.com",
      "address1": "1234 Lake Street",
      "city": "Berkeley",
      "state": "CA",
      "postal_code": "94702",
      "country": "US",
      "identifications": [
        {
          "type": "SSN",
          "value": "123456789"
        }
      ],
      "first_name": "First",
      "last_name": "Last",
      "birth_date": "1990-01-01",
      "parent_token": "my_business_01",
      "uses_parent_account": true,
      "created_time": "2024-10-20T17:50:36Z",
      "last_modified_time": "2024-10-20T17:50:36Z",
      "business_token": "my_business_01",
      "status": "ACTIVE"
    }
  ]
}
```

<h2 id="get_businesses_token">
  Retrieve business
</h2>

**Action:** `GET`\
**Endpoint:** `/businesses/{token}`

{/* <EndpointCard
title="Retrieve a specific business"
path="/businesses/{token}"
method="get"
/> */}

To retrieve a specific business, send a `GET` request to the `/businesses/{token}` endpoint. Include the business `token` path parameter to specify the business to return.

This endpoint supports [field filtering](/core-api/field-filtering/) and [sorting and pagination](/core-api/sorting-and-pagination/).

<h3 id="_url_path_parameters_7">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                              |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| token<br /><br />string<br /><br />Required | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing business resource token |

<h3 id="_url_query_parameters_6">
  URL query parameters
</h3>

| Fields                                       | Description                                                                                                                                                                                     |
| -------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| fields<br /><br />string<br /><br />Optional | Comma-delimited list of fields to return (`field_1,field_2`, and so on). Leave blank to return all fields.<br /><br />**Allowable Values:**<br /><br />Comma-delimited list of fields, or blank |

<h3 id="_response_body_10">
  Response body
</h3>

| Fields                                                                                                              | Description                                                                                                                                                                                                                                                                                                                                                     |
| ------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| account\_holder\_group\_token<br /><br />string<br /><br />Conditionally returned                                   | Associates the specified account holder group with the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                        |
| active<br /><br />boolean<br /><br />Conditionally returned                                                         | Specifies if the business is in the `ACTIVE` state on the Marqeta platform.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                         |
| attestation\_consent<br /><br />boolean<br /><br />Conditionally returned                                           | Indicates that the attester agrees that the information provided is correct and truthful.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                           |
| attestation\_date<br /><br />datetime<br /><br />Conditionally returned                                             | Timestamp of the attestation.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                            |
| attester\_name<br /><br />string<br /><br />Conditionally returned                                                  | Name of the attester for KYC verification.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                              |
| attester\_title<br /><br />string<br /><br />Conditionally returned                                                 | Title of the attester for KYC verification.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                             |
| authentication<br /><br />object<br /><br />Conditionally returned                                                  | Contains metadata about the business's email verification and password updates.<br /><br />**Allowable Values:**<br /><br />`email_verified`, `email_verified_time`, `last_password_update_channel`, `last_password_update_time`                                                                                                                                |
| authentication.**email\_verified**<br /><br />boolean<br /><br />Conditionally returned                             | Specifies whether the email address has been verified.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                              |
| authentication.**email\_verified\_time**<br /><br />datetime<br /><br />Conditionally returned                      | Date and time when the email address was verified.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                        |
| authentication.**last\_password\_update\_channel**<br /><br />string<br /><br />Conditionally returned              | Specifies the channel through which the password was last changed.<br /><br />**Allowable Values:**<br /><br />`USER_CHANGE`, `USER_RESET`                                                                                                                                                                                                                      |
| authentication.**last\_password\_update\_time**<br /><br />datetime<br /><br />Conditionally returned               | Date and time when the password was last changed.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                         |
| beneficial\_owner1<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner1.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner1.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner1.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner1.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner1.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner1.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner1.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner1.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner1.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner1.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner1.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner1.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner1.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner1.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner1.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner1.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner1.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner1.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner1.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner1.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner1.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner1.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner1.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| beneficial\_owner2<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner2.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner2.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner2.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner2.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner2.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner2.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner2.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner2.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner2.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner2.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner2.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner2.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner2.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner2.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner2.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner2.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner2.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner2.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner2.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner2.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner2.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner2.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner2.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| beneficial\_owner3<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner3.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner3.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner3.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner3.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner3.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner3.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner3.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner3.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner3.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner3.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner3.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner3.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner3.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner3.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner3.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner3.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner3.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner3.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner3.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner3.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner3.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner3.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner3.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| beneficial\_owner4<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title`                                                                  |
| beneficial\_owner4.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                               |
| beneficial\_owner4.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                    |
| beneficial\_owner4.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                 |
| beneficial\_owner4.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Date of birth of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                           |
| beneficial\_owner4.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| beneficial\_owner4.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| beneficial\_owner4.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| beneficial\_owner4.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| beneficial\_owner4.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| beneficial\_owner4.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| beneficial\_owner4.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| beneficial\_owner4.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| beneficial\_owner4.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                               |
| beneficial\_owner4.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| beneficial\_owner4.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                  | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| beneficial\_owner4.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| beneficial\_owner4.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                     |
| beneficial\_owner4.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| beneficial\_owner4.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                                    |
| beneficial\_owner4.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />A number between 1 and 100                                                                                                                                                                            |
| beneficial\_owner4.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                  |
| beneficial\_owner4.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                    |
| beneficial\_owner4.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                         |
| business\_name\_dba<br /><br />string<br /><br />Conditionally returned                                             | Fictitious business name ("Doing Business As" or DBA).<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                 |
| business\_name\_legal<br /><br />string<br /><br />Conditionally returned                                           | Legal name of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                            |
| business\_type<br /><br />string<br /><br />Conditionally returned                                                  | Indicates the type of business, for example B2B (business-to-business) or B2C (business-to-consumer).<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                  |
| created\_time<br /><br />datetime<br /><br />Returned                                                               | Date and time when the business was created, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                      |
| date\_established<br /><br />datetime<br /><br />Conditionally returned                                             | Date and time when the business was established.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                         |
| duns\_number<br /><br />string<br /><br />Conditionally returned                                                    | Data Universal Numbering System (DUNS) number of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                         |
| general\_business\_description<br /><br />string<br /><br />Conditionally returned                                  | General description of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| history<br /><br />string<br /><br />Conditionally returned                                                         | History of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                               |
| identifications<br /><br />array of objects<br /><br />Conditionally returned                                       | One or more objects containing identifications associated with the business.<br /><br />Objects are returned if they exist in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                    |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned                         | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| identifications\[].**type**<br /><br />string<br /><br />Conditionally returned                                     | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                                    | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| in\_current\_location\_since<br /><br />datetime<br /><br />Conditionally returned                                  | Date on which the business office opened in its current location.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                        |
| incorporation<br /><br />object<br /><br />Conditionally returned                                                   | Contains information about the organizational structure of the business.<br /><br />**Allowable Values:**<br /><br />`address_registered_under`, `incorporation_type`, `is_public`, `is_regulated_entity`, `name_registered_under`, `state_of_incorporation`, `stock_symbol`                                                                                    |
| incorporation.**address\_registered\_under**<br /><br />object<br /><br />Conditionally returned                    | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| incorporation.address\_registered\_under.**address1**<br /><br />string<br /><br />Conditionally returned           | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| incorporation.address\_registered\_under.**address2**<br /><br />string<br /><br />Conditionally returned           | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| incorporation.address\_registered\_under.**city**<br /><br />string<br /><br />Conditionally returned               | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| incorporation.address\_registered\_under.**country**<br /><br />string<br /><br />Conditionally returned            | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| incorporation.address\_registered\_under.**postal\_code**<br /><br />string<br /><br />Conditionally returned       | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| incorporation.address\_registered\_under.**state**<br /><br />string<br /><br />Conditionally returned              | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| incorporation.address\_registered\_under.**zip**<br /><br />string<br /><br />Conditionally returned                | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| incorporation.**incorporation\_type**<br /><br />string<br /><br />Conditionally returned                           | Organizational structure of the business (corporation or sole proprietorship, for example).<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`LLC`, `CORPORATION`, `SOLE_PROPRIETORSHIP`, `PARTNERSHIP`, `OTHER`, `FINANCIAL_OR_CREDIT_INSTITUTION`, `FOUNDATION`, `ASSOCIATION`, `CHARITY`, `TRUST` |
| incorporation.**is\_public**<br /><br />boolean<br /><br />Conditionally returned                                   | A value of `true` indicates that the business is publicly held.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                     |
| incorporation.**is\_regulated\_entity**<br /><br />boolean<br /><br />Conditionally returned                        | A value of `true` indicates that the business is a regulated entity.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                |
| incorporation.**name\_registered\_under**<br /><br />string<br /><br />Conditionally returned                       | Name under which the business is registered.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                           |
| incorporation.**state\_of\_incorporation**<br /><br />string<br /><br />Conditionally returned                      | State, province, territory, or federation where the business is incorporated.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                          |
| incorporation.**stock\_symbol**<br /><br />string<br /><br />Conditionally returned                                 | Stock symbol associated with the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                             |
| international\_office\_locations<br /><br />string<br /><br />Conditionally returned                                | Locations of the business' offices outside the US.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                     |
| ip\_address<br /><br />string<br /><br />Conditionally returned                                                     | IP address of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                             |
| last\_modified\_time<br /><br />datetime<br /><br />Returned                                                        | Date and time when the business was last modified, in UTC.<br /><br />**Allowable Values:**<br /><br />datetime<br /><br />**Format:**<br />yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                |
| metadata<br /><br />object<br /><br />Conditionally returned                                                        | Associates any additional metadata you provide with the business.<br /><br />Metadata is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Existing `metadata` object                                                                                                                                                          |
| notes<br /><br />string<br /><br />Conditionally returned                                                           | Any additional information pertaining to the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                 |
| office\_location<br /><br />object<br /><br />Conditionally returned                                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| office\_location.**address1**<br /><br />string<br /><br />Conditionally returned                                   | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| office\_location.**address2**<br /><br />string<br /><br />Conditionally returned                                   | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| office\_location.**city**<br /><br />string<br /><br />Conditionally returned                                       | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| office\_location.**country**<br /><br />string<br /><br />Conditionally returned                                    | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| office\_location.**postal\_code**<br /><br />string<br /><br />Conditionally returned                               | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| office\_location.**state**<br /><br />string<br /><br />Conditionally returned                                      | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| office\_location.**zip**<br /><br />string<br /><br />Conditionally returned                                        | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| password<br /><br />string<br /><br />Conditionally returned                                                        | Password for the business account on the Marqeta platform.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />1–255 chars                                                                                                                                                                              |
| phone<br /><br />string<br /><br />Conditionally returned                                                           | 10-digit telephone number of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                             |
| primary\_contact<br /><br />object<br /><br />Conditionally returned                                                | Describes the business' primary contact person.<br /><br />**Allowable Values:**<br /><br />`department`, `email`, `extension`, `fax`, `full_name`, `mobile`, `phone`, `title`                                                                                                                                                                                  |
| primary\_contact.**department**<br /><br />string<br /><br />Conditionally returned                                 | Business department of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                            |
| primary\_contact.**email**<br /><br />string<br /><br />Conditionally returned                                      | Email address of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                  |
| primary\_contact.**extension**<br /><br />string<br /><br />Conditionally returned                                  | Phone extension of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                |
| primary\_contact.**fax**<br /><br />string<br /><br />Conditionally returned                                        | Fax number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                       |
| primary\_contact.**full\_name**<br /><br />string<br /><br />Conditionally returned                                 | Full name of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                      |
| primary\_contact.**mobile**<br /><br />string<br /><br />Conditionally returned                                     | Mobile phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                              |
| primary\_contact.**phone**<br /><br />string<br /><br />Conditionally returned                                      | Phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                     |
| primary\_contact.**title**<br /><br />string<br /><br />Conditionally returned                                      | Title of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                          |
| proprietor\_is\_beneficial\_owner<br /><br />boolean<br /><br />Conditionally returned                              | Indicates that the proprietor or officer of the business is also a beneficial owner.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                |
| proprietor\_or\_officer<br /><br />object<br /><br />Conditionally returned                                         | Contains information about the proprietor or officer of the business.<br /><br />**Allowable Values:**<br /><br />`alternative_names`, `birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `phone`, `ssn`, `title`                                                                               |
| proprietor\_or\_officer.**alternative\_names**<br /><br />string<br /><br />Conditionally returned                  | Alternate names of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                 |
| proprietor\_or\_officer.**birth\_place**<br /><br />string<br /><br />Conditionally returned                        | Country of birth of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                 |
| proprietor\_or\_officer.**dob**<br /><br />datetime<br /><br />Conditionally returned                               | Business proprietor or officer’s date of birth.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                          |
| proprietor\_or\_officer.**email**<br /><br />string<br /><br />Conditionally returned                               | Email address of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                   |
| proprietor\_or\_officer.**first\_name**<br /><br />string<br /><br />Conditionally returned                         | First name of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                      |
| proprietor\_or\_officer.**home**<br /><br />object<br /><br />Conditionally returned                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                      |
| proprietor\_or\_officer.home.**address1**<br /><br />string<br /><br />Conditionally returned                       | Street name and number of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                  |
| proprietor\_or\_officer.home.**address2**<br /><br />string<br /><br />Conditionally returned                       | Additional address information.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                         |
| proprietor\_or\_officer.home.**city**<br /><br />string<br /><br />Conditionally returned                           | City of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                    |
| proprietor\_or\_officer.home.**country**<br /><br />string<br /><br />Conditionally returned                        | Country of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />40 char max                                                                                                                                                                                                                 |
| proprietor\_or\_officer.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                   | Postal code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                             |
| proprietor\_or\_officer.home.**state**<br /><br />string<br /><br />Conditionally returned                          | State, province, or territory of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                           |
| proprietor\_or\_officer.home.**zip**<br /><br />string<br /><br />Conditionally returned                            | United States ZIP code of the address.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                  |
| proprietor\_or\_officer.**identifications**<br /><br />array of objects<br /><br />Conditionally returned           | One or more objects containing personal identifications of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                 |
| proprietor\_or\_officer.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.identifications\[].**type**<br /><br />string<br /><br />Conditionally returned             | Type of identification.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                |
| proprietor\_or\_officer.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                             |
| proprietor\_or\_officer.**last\_name**<br /><br />string<br /><br />Conditionally returned                          | Last name of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                       |
| proprietor\_or\_officer.**middle\_name**<br /><br />string<br /><br />Conditionally returned                        | Middle name of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                     |
| proprietor\_or\_officer.**nationality**<br /><br />string<br /><br />Conditionally returned                         | Nationality of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country code                                                                                                                                      |
| proprietor\_or\_officer.**phone**<br /><br />string<br /><br />Conditionally returned                               | Telephone number of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                          |
| proprietor\_or\_officer.**ssn**<br /><br />string<br /><br />Conditionally returned                                 | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />Nine digits                                                                                                                 |
| proprietor\_or\_officer.**title**<br /><br />string<br /><br />Conditionally returned                               | Title of the business proprietor or officer.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                           |
| status<br /><br />string<br /><br />Conditionally returned                                                          | Specifies the state of the business on the Marqeta platform.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />`UNVERIFIED`, `LIMITED`, `ACTIVE`, `SUSPENDED`, `CLOSED`                                                                                                                               |
| taxpayer\_id<br /><br />string<br /><br />Conditionally returned                                                    | Taxpayer identifier of the business.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                   |
| token<br /><br />string<br /><br />Conditionally returned                                                           | Unique identifier of the business resource.<br /><br />This field is always returned.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                    |
| website<br /><br />string<br /><br />Conditionally returned                                                         | URL of the business' website.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                          |

<h3 id="_sample_response_body_5">
  Sample response body
</h3>

```json JSON expandable lines wrap theme={null}
{
  "token": "my_business_02",
  "active": true,
  "notes": "My notes",
  "ip_address": "67.120.28.118",
  "password": "My_passw0rd",
  "phone": "5105551212",
  "metadata": {
    "my_name_1": "my_value_1",
    "my_name_2": "my_value_2"
  },
  "business_name_legal": "My_legal_business_name",
  "business_name_dba": "My_fictitious_business_name",
  "office_location": {
    "address1": "123 A street",
    "address2": "Suite 123",
    "city": "Oakland",
    "state": "CA",
    "postal_code": "94610",
    "country": "US"
  },
  "in_current_location_since": "2010-04-15T00:01:00Z",
  "website": "https://my_business_02.com",
  "date_established": "2010-04-15T00:01:00Z",
  "general_business_description": "44112 - Used Car Dealers",
  "history": "My_business_history",
  "business_type": "My_business_type",
  "international_office_locations": "Athens, Greece; Buenos Aires, Argentina",
  "identifications": [
    {
      "type": "BUSINESS_TAX_ID",
      "value": "123456789"
    }
  ],
  "duns_number": "123456789",
  "primary_contact": {
    "full_name": "First Middle Last",
    "title": "Dr",
    "department": "My_department",
    "phone": "5105551212",
    "extension": "11",
    "fax": "5105551222",
    "mobile": "5105551213",
    "email": "dr.me@my.business.com"
  },
  "incorporation": {
    "is_public": true,
    "stock_symbol": "MB",
    "state_of_incorporation": "CA",
    "name_registered_under": "First Middle Last",
    "address_registered_under": {
      "address1": "123 B Street",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    },
    "incorporation_type": "LLC"
  },
  "proprietor_or_officer": {
    "title": "Mr",
    "dob": "1985-01-08T00:00:00Z",
    "phone": "5105551211",
    "email": "mr.myself@my.business.com",
    "first_name": "First",
    "middle_name": "Middle",
    "last_name": "Last",
    "alternative_names": "My Alternative Name",
    "ssn": "5555",
    "home": {
      "address1": "123 B Street",
      "address2": "Apt A",
      "city": "Oakland",
      "state": "CA",
      "postal_code": "94610",
      "country": "US"
    }
  },
  "created_time": "2025-01-13T23:29:10Z",
  "last_modified_time": "2025-01-13T23:29:10Z",
  "deposit_account": {
    "x-mq-internal": true,
    "token": "420df02a-6aef-42bf-be7b-0d080ebf7573",
    "account_number": "12342126720827265",
    "routing_number": "293748000"
  },
  "status": "ACTIVE"
}
```

<h2 id="put_businesses_token">
  Update business
</h2>

**Action:** `PUT`\
**Endpoint:** `/businesses/{token}`

{/* <EndpointCard
title="Update a specific business"
path="/businesses/{token}"
method="put"
/> */}

To update a business, send a `PUT` request to `/businesses/{token}`. Use the `token` path parameter to specify the business to update. Include the business details to update in [JSON](http://www.json.org/) format in the body of the request. Only values of parameters in the request are modified; all others are left unchanged.

<h3 id="_url_path_parameters_8">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                             |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| token<br /><br />string<br /><br />Required | Unique identifier of the business resource<br /><br />**Allowable Values:**<br /><br />Existing business resource token |

<h3 id="_request_body_5">
  Request body
</h3>

| Fields                                                                                                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| account\_holder\_group\_token<br /><br />string<br /><br />Optional                                   | Associates the specified account holder group with the business.<br /><br />**Allowable Values:**<br /><br />36 char max<br /><br />Existing account holder group token.<br /><br />Send a `GET` request to `/accountholdergroups` to retrieve account holder group tokens.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| active<br /><br />boolean<br /><br />Optional                                                         | Specifies if the business is in the `ACTIVE` state on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| attestation\_consent<br /><br />boolean<br /><br />Optional                                           | Indicates that the attester agrees that the information provided is correct and truthful.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| attestation\_date<br /><br />datetime<br /><br />Optional                                             | Timestamp of the attestation.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| attester\_name<br /><br />string<br /><br />Optional                                                  | Name of the attester for KYC verification.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| attester\_title<br /><br />string<br /><br />Optional                                                 | Title of the attester for KYC verification.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner1.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner1.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner1.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner1.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner1.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner1.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner2.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner2.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner2.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner2.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner2.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner2.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner3.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner3.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner3.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner3.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner3.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner3.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4<br /><br />object<br /><br />Optional                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner4.**birth\_place**<br /><br />string<br /><br />Optional                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**dob**<br /><br />datetime<br /><br />Optional                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner4.**email**<br /><br />string<br /><br />Optional                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.**first\_name**<br /><br />string<br /><br />Optional                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**home**<br /><br />object<br /><br />Optional                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner4.home.**address1**<br /><br />string<br /><br />Optional                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.home.**address2**<br /><br />string<br /><br />Optional                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**city**<br /><br />string<br /><br />Optional                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.home.**country**<br /><br />string<br /><br />Optional                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.home.**postal\_code**<br /><br />string<br /><br />Optional                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.home.**state**<br /><br />string<br /><br />Optional                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**zip**<br /><br />string<br /><br />Optional                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**identifications**<br /><br />array of objects<br /><br />Optional                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner4.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**type**<br /><br />string<br /><br />Required                  | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**value**<br /><br />string<br /><br />Optional                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**last\_name**<br /><br />string<br /><br />Optional                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner4.**middle\_name**<br /><br />string<br /><br />Optional                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**nationality**<br /><br />string<br /><br />Optional                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ownership\_percentage**<br /><br />string<br /><br />Optional                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.**phone**<br /><br />string<br /><br />Optional                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ssn**<br /><br />string<br /><br />Optional                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner4.**title**<br /><br />string<br /><br />Optional                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| business\_name\_dba<br /><br />string<br /><br />Optional                                             | Fictitious business name ("Doing Business As" or DBA).<br /><br />This field is required for KYC verification (US-based accounts only). If your business does not use a fictitious business name, enter your legal business name again in this field.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                  |
| business\_name\_legal<br /><br />string<br /><br />Optional                                           | Legal name of business.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| business\_type<br /><br />string<br /><br />Optional                                                  | Indicates the type of business, for example business-to-business (B2B) or business-to-consumer (B2C).<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| date\_established<br /><br />datetime<br /><br />Optional                                             | Date when the business was established.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| duns\_number<br /><br />string<br /><br />Optional                                                    | Data Universal Numbering System (DUNS) number of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| general\_business\_description<br /><br />string<br /><br />Optional                                  | Required for KYC verification (US-based cardholders only). Business description must adhere to the <a href="https://www.census.gov/naics/" target="_blank" rel="noopener">NAICS standard</a>, as defined by the United States Census Bureau. You must provide at least the description; NAICS codes are optional. For example, `Used Car Dealers` or `44112 - Used Car Dealers`.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                            |
| history<br /><br />string<br /><br />Optional                                                         | History of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| identifications<br /><br />array of objects<br /><br />Optional                                       | One or more objects containing identifications associated with the business.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional                         | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| identifications\[].**type**<br /><br />string<br /><br />Required                                     | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| identifications\[].**value**<br /><br />string<br /><br />Optional                                    | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| in\_current\_location\_since<br /><br />datetime<br /><br />Optional                                  | Date on which the business office opened in its current location.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| incorporation<br /><br />object<br /><br />Optional                                                   | Contains information about the organizational structure of the business.<br /><br />This object is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`address_registered_under`, `incorporation_type`, `is_public`, `is_regulated_entity`, `name_registered_under`, `state_of_incorporation`, `stock_symbol`                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**address\_registered\_under**<br /><br />object<br /><br />Optional                    | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| incorporation.address\_registered\_under.**address1**<br /><br />string<br /><br />Optional           | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.address\_registered\_under.**address2**<br /><br />string<br /><br />Optional           | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**city**<br /><br />string<br /><br />Optional               | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| incorporation.address\_registered\_under.**country**<br /><br />string<br /><br />Optional            | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.address\_registered\_under.**postal\_code**<br /><br />string<br /><br />Optional       | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| incorporation.address\_registered\_under.**state**<br /><br />string<br /><br />Optional              | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**zip**<br /><br />string<br /><br />Optional                | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**incorporation\_type**<br /><br />string<br /><br />Optional                           | Organizational structure of the business, such as corporation or sole proprietorship.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`LLC`, `CORPORATION`, `SOLE_PROPRIETORSHIP`, `PARTNERSHIP`, `COOPERATIVE`, `OTHER`, `FINANCIAL_OR_CREDIT_INSTITUTION`, `FOUNDATION`, `ASSOCIATION`, `CHARITY`, `TRUST`                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.**is\_public**<br /><br />boolean<br /><br />Optional                                   | A value of `true` indicates that the business is publicly held.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.**is\_regulated\_entity**<br /><br />boolean<br /><br />Optional                        | A value of `true` indicates that the business is a regulated entity.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| incorporation.**name\_registered\_under**<br /><br />string<br /><br />Optional                       | Name under which the business is registered.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| incorporation.**state\_of\_incorporation**<br /><br />string<br /><br />Optional                      | State, province, territory, or federation where the business is incorporated.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, or federal abbreviation</a> required for KYC verification (`CA` for California or `CAN` for Canada, for example); 255 char max otherwise                                                                                                                                                                                                                                                                                |
| incorporation.**stock\_symbol**<br /><br />string<br /><br />Optional                                 | Business stock symbol.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| international\_office\_locations<br /><br />string<br /><br />Optional                                | Locations of the business' offices outside the United States.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| ip\_address<br /><br />string<br /><br />Optional                                                     | IP address of the business.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| metadata<br /><br />object<br /><br />Optional                                                        | Associates any additional metadata you provide with the business.<br /><br />**Allowable Values:**<br /><br />You can define the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| notes<br /><br />string<br /><br />Optional                                                           | Any additional information pertaining to the business.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location<br /><br />object<br /><br />Optional                                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| office\_location.**address1**<br /><br />string<br /><br />Optional                                   | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| office\_location.**address2**<br /><br />string<br /><br />Optional                                   | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**city**<br /><br />string<br /><br />Optional                                       | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| office\_location.**country**<br /><br />string<br /><br />Optional                                    | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| office\_location.**postal\_code**<br /><br />string<br /><br />Optional                               | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| office\_location.**state**<br /><br />string<br /><br />Optional                                      | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**zip**<br /><br />string<br /><br />Optional                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| password<br /><br />string<br /><br />Optional                                                        | Password for the business account on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />- Must contain at least one numeral<br />- Must contain at least one lowercase letter<br />- Must contain at least one uppercase letter<br />- Must contain at least one of these symbols:<br />`@``#``$``%``!``^``&``*``(``)`<br />`\\``_``+``~``-``=``[``]``\{``}`<br />`,``;``:``'``"``.``/``<``>``?`<code>\`</code>                                                                                                                                                                                                                                                                                                                                               |
| phone<br /><br />string<br /><br />Optional                                                           | 10-digit telephone number of business.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| primary\_contact<br /><br />object<br /><br />Optional                                                | Describes the business' primary contact person.<br /><br />**Allowable Values:**<br /><br />`department`, `email`, `extension`, `fax`, `full_name`, `mobile`, `phone`, `title`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**department**<br /><br />string<br /><br />Optional                                 | Business department of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| primary\_contact.**email**<br /><br />string<br /><br />Optional                                      | Email address of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**extension**<br /><br />string<br /><br />Optional                                  | Phone extension of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| primary\_contact.**fax**<br /><br />string<br /><br />Optional                                        | Fax number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| primary\_contact.**full\_name**<br /><br />string<br /><br />Optional                                 | Full name of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| primary\_contact.**mobile**<br /><br />string<br /><br />Optional                                     | Mobile phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| primary\_contact.**phone**<br /><br />string<br /><br />Optional                                      | Phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| primary\_contact.**title**<br /><br />string<br /><br />Optional                                      | Title of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_is\_beneficial\_owner<br /><br />boolean<br /><br />Optional                              | Indicates that the proprietor or officer of the business is also a beneficial owner.<br /><br />This field is required for KYC verification in the United States if the business proprietor or officer is also a beneficial owner. If the proprietor or business officer is a beneficial owner, use this field to indicate their beneficial ownership. Do not include information about the proprietor or business officer in a `beneficial_owner` object.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                    |
| proprietor\_or\_officer<br /><br />object<br /><br />Optional                                         | Contains information about the proprietor or officer of the business.<br /><br />This object is required for KYC verification of proprietors or officers of privately held businesses in the United States. This object is not required for publicly held businesses.<br /><br />**Allowable Values:**<br /><br />`alternative_names`, `birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `phone`, `ssn`, `title`                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**alternative\_names**<br /><br />string<br /><br />Optional                  | Alternate names of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.**birth\_place**<br /><br />string<br /><br />Optional                        | Country of birth of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**dob**<br /><br />datetime<br /><br />Optional                               | Business proprietor or officer’s date of birth.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**email**<br /><br />string<br /><br />Optional                               | Email address of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.**first\_name**<br /><br />string<br /><br />Required                         | First name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**home**<br /><br />object<br /><br />Optional                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| proprietor\_or\_officer.home.**address1**<br /><br />string<br /><br />Optional                       | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.home.**address2**<br /><br />string<br /><br />Optional                       | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**city**<br /><br />string<br /><br />Optional                           | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.home.**country**<br /><br />string<br /><br />Optional                        | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.home.**postal\_code**<br /><br />string<br /><br />Optional                   | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.home.**state**<br /><br />string<br /><br />Optional                          | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**zip**<br /><br />string<br /><br />Optional                            | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| proprietor\_or\_officer.**identifications**<br /><br />array of objects<br /><br />Optional           | One or more objects containing personal identifications of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.identifications\[].**expiration\_date**<br /><br />string<br /><br />Optional | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**type**<br /><br />string<br /><br />Required             | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**value**<br /><br />string<br /><br />Optional            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| proprietor\_or\_officer.**last\_name**<br /><br />string<br /><br />Required                          | Last name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.**middle\_name**<br /><br />string<br /><br />Optional                        | Middle name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**nationality**<br /><br />string<br /><br />Optional                         | Nationality of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                         |
| proprietor\_or\_officer.**phone**<br /><br />string<br /><br />Optional                               | Telephone number of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212<br /><br />Do not insert a 1 before the area code.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**ssn**<br /><br />string<br /><br />Optional                                 | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Nine digits, no delimiters. `123456789`, for example.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**title**<br /><br />string<br /><br />Optional                               | Title of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| taxpayer\_id<br /><br />string<br /><br />Optional                                                    | Taxpayer identifier of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| token<br /><br />string<br /><br />Optional                                                           | Unique identifier of the business.<br /><br />Send a `GET` request to `/businesses` to retrieve business tokens.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| website<br /><br />string<br /><br />Optional                                                         | URL of the business' website.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |

<h3 id="_response_body_11">
  Response body
</h3>

| Fields                                                                                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| account\_holder\_group\_token<br /><br />string<br /><br />Conditionally returned                                   | Existing account holder group token that associates the specified account holder group with the business. Send a `GET` request to `/accountholdergroups` to retrieve account holder group tokens.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| active<br /><br />boolean<br /><br />Conditionally returned                                                         | Specifies if the business is in the `ACTIVE` state on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`true`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| attestation\_consent<br /><br />boolean<br /><br />Conditionally returned                                           | Indicates that the attester agrees that the information provided is correct and truthful.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| attestation\_date<br /><br />datetime<br /><br />Conditionally returned                                             | Timestamp of the attestation.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| attester\_name<br /><br />string<br /><br />Conditionally returned                                                  | Name of the attester for KYC verification.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| attester\_title<br /><br />string<br /><br />Conditionally returned                                                 | Title of the attester for KYC verification.<br /><br />**Allowable Values:**<br /><br />64 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner1.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner1.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner1.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner1.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner1.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner1.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner1.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner1.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner1.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner1.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner1.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner1.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner1.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner2.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner2.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner2.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner2.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner2.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner2.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner2.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner2.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner2.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner2.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner2.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner2.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner2.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner3.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner3.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner3.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner3.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner3.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner3.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner3.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner3.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner3.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner3.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner3.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner3.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner3.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4<br /><br />object<br /><br />Conditionally returned                                              | Contains information about the beneficial owner of the business, if applicable.<br /><br />This object is required for KYC verification in the United States if the business is private and has a beneficial owner. This object is not required for publicly held businesses.<br /><br />Do not include information about the proprietor or business officer in a `beneficial_owner` object. If the proprietor or officer of the business is also a beneficial owner, you must indicate that in the `proprietor_is_beneficial_owner` field in the body field details of the business.<br /><br />**Allowable Values:**<br /><br />`birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `ownership_percentage`, `phone`, `ssn`, `title` |
| beneficial\_owner4.**birth\_place**<br /><br />string<br /><br />Conditionally returned                             | Country of birth of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**dob**<br /><br />datetime<br /><br />Conditionally returned                                    | Beneficial owner’s date of birth.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| beneficial\_owner4.**email**<br /><br />string<br /><br />Conditionally returned                                    | Email address of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.**first\_name**<br /><br />string<br /><br />Conditionally returned                              | First name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**home**<br /><br />object<br /><br />Conditionally returned                                     | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| beneficial\_owner4.home.**address1**<br /><br />string<br /><br />Conditionally returned                            | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| beneficial\_owner4.home.**address2**<br /><br />string<br /><br />Conditionally returned                            | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**city**<br /><br />string<br /><br />Conditionally returned                                | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.home.**country**<br /><br />string<br /><br />Conditionally returned                             | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                        | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.home.**state**<br /><br />string<br /><br />Conditionally returned                               | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| beneficial\_owner4.home.**zip**<br /><br />string<br /><br />Conditionally returned                                 | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**identifications**<br /><br />array of objects<br /><br />Conditionally returned                | One or more objects containing personal identifications of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| beneficial\_owner4.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned      | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**type**<br /><br />string<br /><br />Returned                                | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| beneficial\_owner4.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                 | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| beneficial\_owner4.**last\_name**<br /><br />string<br /><br />Conditionally returned                               | Last name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| beneficial\_owner4.**middle\_name**<br /><br />string<br /><br />Conditionally returned                             | Middle name of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| beneficial\_owner4.**nationality**<br /><br />string<br /><br />Conditionally returned                              | Nationality of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ownership\_percentage**<br /><br />string<br /><br />Conditionally returned                    | Ownership percentage of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Any number between 1 and 100. Decimal values are supported; do not include a percentage symbol.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| beneficial\_owner4.**phone**<br /><br />string<br /><br />Conditionally returned                                    | Ten-digit phone number of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| beneficial\_owner4.**ssn**<br /><br />string<br /><br />Conditionally returned                                      | Nine-digit Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| beneficial\_owner4.**title**<br /><br />string<br /><br />Conditionally returned                                    | Title of the beneficial owner.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| business\_name\_dba<br /><br />string<br /><br />Conditionally returned                                             | Fictitious business name ("Doing Business As" or DBA).<br /><br />This field is required for KYC verification (US-based accounts only). If your business does not use a fictitious business name, enter your legal business name again in this field.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                  |
| business\_name\_legal<br /><br />string<br /><br />Conditionally returned                                           | Legal name of business.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />128 char max for KYC verification; 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| business\_type<br /><br />string<br /><br />Conditionally returned                                                  | Indicates the type of business, for example B2B (business-to-business) or B2C (business-to-consumer).<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| date\_established<br /><br />datetime<br /><br />Conditionally returned                                             | Date when the business was established.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| duns\_number<br /><br />string<br /><br />Conditionally returned                                                    | Data Universal Numbering System (DUNS) number of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| general\_business\_description<br /><br />string<br /><br />Conditionally returned                                  | Required for KYC verification (US-based cardholders only). Business description must adhere to the <a href="https://www.census.gov/naics/" target="_blank" rel="noopener">NAICS standard</a>, as defined by the United States Census Bureau. You must provide at least the description; NAICS codes are optional. For example, `Used Car Dealers` or `44112 - Used Car Dealers`.<br /><br />This field is returned if it exists in the resource.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                            |
| history<br /><br />string<br /><br />Conditionally returned                                                         | History of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| identifications<br /><br />array of objects<br /><br />Conditionally returned                                       | One or more objects containing identifications associated with the business.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned                         | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| identifications\[].**type**<br /><br />string<br /><br />Returned                                                   | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| identifications\[].**value**<br /><br />string<br /><br />Conditionally returned                                    | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| in\_current\_location\_since<br /><br />datetime<br /><br />Conditionally returned                                  | Date on which the business office opened in its current location.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| incorporation<br /><br />object<br /><br />Conditionally returned                                                   | Contains information about the organizational structure of the business.<br /><br />This object is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`address_registered_under`, `incorporation_type`, `is_public`, `is_regulated_entity`, `name_registered_under`, `state_of_incorporation`, `stock_symbol`                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**address\_registered\_under**<br /><br />object<br /><br />Conditionally returned                    | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| incorporation.address\_registered\_under.**address1**<br /><br />string<br /><br />Conditionally returned           | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.address\_registered\_under.**address2**<br /><br />string<br /><br />Conditionally returned           | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**city**<br /><br />string<br /><br />Conditionally returned               | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| incorporation.address\_registered\_under.**country**<br /><br />string<br /><br />Conditionally returned            | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.address\_registered\_under.**postal\_code**<br /><br />string<br /><br />Conditionally returned       | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| incorporation.address\_registered\_under.**state**<br /><br />string<br /><br />Conditionally returned              | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| incorporation.address\_registered\_under.**zip**<br /><br />string<br /><br />Conditionally returned                | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| incorporation.**incorporation\_type**<br /><br />string<br /><br />Conditionally returned                           | Organizational structure of the business, such as corporation or sole proprietorship.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />`LLC`, `CORPORATION`, `SOLE_PROPRIETORSHIP`, `PARTNERSHIP`, `COOPERATIVE`, `OTHER`, `FINANCIAL_OR_CREDIT_INSTITUTION`, `FOUNDATION`, `ASSOCIATION`, `CHARITY`, `TRUST`                                                                                                                                                                                                                                                                                                                                                                                                            |
| incorporation.**is\_public**<br /><br />boolean<br /><br />Conditionally returned                                   | A value of `true` indicates that the business is publicly held.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| incorporation.**is\_regulated\_entity**<br /><br />boolean<br /><br />Conditionally returned                        | A value of `true` indicates that the business is a regulated entity.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| incorporation.**name\_registered\_under**<br /><br />string<br /><br />Conditionally returned                       | Name under which the business is registered.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| incorporation.**state\_of\_incorporation**<br /><br />string<br /><br />Conditionally returned                      | State, province, territory, or federation where the business is incorporated.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid state, provincial, territorial, or federal abbreviation</a> required for KYC verification (`CA` for California or `CAN` for Canada, for example); 255 char max otherwise                                                                                                                                                                                                                                                                                |
| incorporation.**stock\_symbol**<br /><br />string<br /><br />Conditionally returned                                 | Business stock symbol.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| international\_office\_locations<br /><br />string<br /><br />Conditionally returned                                | Locations of the business' offices outside the US.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| ip\_address<br /><br />string<br /><br />Conditionally returned                                                     | IP address of the business.<br /><br />**Allowable Values:**<br /><br />39 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| metadata<br /><br />object<br /><br />Conditionally returned                                                        | Associates any additional metadata you provide with the business.<br /><br />**Allowable Values:**<br /><br />You can define the names and values of up to 20 fields in the format `"my_name_1": "my_value_1"`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| notes<br /><br />string<br /><br />Conditionally returned                                                           | Any additional information pertaining to the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| office\_location<br /><br />object<br /><br />Conditionally returned                                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| office\_location.**address1**<br /><br />string<br /><br />Conditionally returned                                   | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| office\_location.**address2**<br /><br />string<br /><br />Conditionally returned                                   | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**city**<br /><br />string<br /><br />Conditionally returned                                       | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| office\_location.**country**<br /><br />string<br /><br />Conditionally returned                                    | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| office\_location.**postal\_code**<br /><br />string<br /><br />Conditionally returned                               | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| office\_location.**state**<br /><br />string<br /><br />Conditionally returned                                      | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| office\_location.**zip**<br /><br />string<br /><br />Conditionally returned                                        | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| password<br /><br />string<br /><br />Conditionally returned                                                        | Password for the business account on the Marqeta platform.<br /><br />**Allowable Values:**<br /><br />1–255 chars<br /><br />- Must contain at least one numeral<br /><br />- Must contain at least one lowercase letter<br /><br />- Must contain at least one uppercase letter<br /><br />- Must contain at least one of these symbols:<br />`@``#``$``%``!``^``&``*``(``)`<br />`\\``_``+``~``-``=``[``]``\{``}`<br />`,``;``:``'``"``.``/``<``>``?`<code>\`</code>                                                                                                                                                                                                                                                                                                                              |
| phone<br /><br />string<br /><br />Conditionally returned                                                           | 10-digit telephone number of business.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| primary\_contact<br /><br />object<br /><br />Conditionally returned                                                | Describes the business' primary contact person.<br /><br />**Allowable Values:**<br /><br />`department`, `email`, `extension`, `fax`, `full_name`, `mobile`, `phone`, `title`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**department**<br /><br />string<br /><br />Conditionally returned                                 | Business department of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| primary\_contact.**email**<br /><br />string<br /><br />Conditionally returned                                      | Email address of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| primary\_contact.**extension**<br /><br />string<br /><br />Conditionally returned                                  | Phone extension of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| primary\_contact.**fax**<br /><br />string<br /><br />Conditionally returned                                        | Fax number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| primary\_contact.**full\_name**<br /><br />string<br /><br />Conditionally returned                                 | Full name of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| primary\_contact.**mobile**<br /><br />string<br /><br />Conditionally returned                                     | Mobile phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| primary\_contact.**phone**<br /><br />string<br /><br />Conditionally returned                                      | Phone number of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />Format: 510-555-1212 or 5105551212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| primary\_contact.**title**<br /><br />string<br /><br />Conditionally returned                                      | Title of the primary contact.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_is\_beneficial\_owner<br /><br />boolean<br /><br />Conditionally returned                              | Indicates that the proprietor or officer of the business is also a beneficial owner.<br /><br />This field is required for KYC verification if the business proprietor or officer is also a beneficial owner.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**<br />`false`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer<br /><br />object<br /><br />Conditionally returned                                         | Contains information about the proprietor or officer of the business.<br /><br />This object is required for KYC verification of proprietors or officers of privately held businesses in the United States. This object is not required for publicly held businesses.<br /><br />**Allowable Values:**<br /><br />`alternative_names`, `birth_place`, `dob`, `email`, `first_name`, `home`, `identifications`, `last_name`, `middle_name`, `nationality`, `phone`, `ssn`, `title`                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**alternative\_names**<br /><br />string<br /><br />Conditionally returned                  | Alternate names of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.**birth\_place**<br /><br />string<br /><br />Conditionally returned                        | Country of birth of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                    |
| proprietor\_or\_officer.**dob**<br /><br />datetime<br /><br />Conditionally returned                               | Business proprietor or officer’s date of birth.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd or yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**email**<br /><br />string<br /><br />Conditionally returned                               | Email address of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.**first\_name**<br /><br />string<br /><br />Returned                                       | First name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 36 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**home**<br /><br />object<br /><br />Conditionally returned                                | Address associated with the business.<br /><br />**Allowable Values:**<br /><br />`address1`, `address2`, `city`, `country`, `postal_code`, `state`, `zip`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| proprietor\_or\_officer.home.**address1**<br /><br />string<br /><br />Conditionally returned                       | Street name and number of the address.<br /><br />This field is required for KYC verification (US-based accounts only). Cannot perform KYC if set to a PO Box.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.home.**address2**<br /><br />string<br /><br />Conditionally returned                       | Additional address information.<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**city**<br /><br />string<br /><br />Conditionally returned                           | City of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| proprietor\_or\_officer.home.**country**<br /><br />string<br /><br />Conditionally returned                        | Country of the address.<br /><br />**Allowable Values:**<br /><br />40 char max<br /><br /><a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">ISO alpha-2 country code</a> required for KYC verification (`US`, for example); 40 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.home.**postal\_code**<br /><br />string<br /><br />Conditionally returned                   | Postal code of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.home.**state**<br /><br />string<br /><br />Conditionally returned                          | State of the address.<br /><br />This field is required for KYC verification (US-based accounts only).<br /><br />**Allowable Values:**<br /><br />35 char max<br /><br /><a href="/core-api/kyc-verification/#_valid_state_provincial_territorial_and_federal_abbreviations">Valid two-character abbreviation</a> required for KYC verification (`CA` for California, for example). Must be uppercase.                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.home.**zip**<br /><br />string<br /><br />Conditionally returned                            | United States ZIP code of the address.<br /><br />**Allowable Values:**<br /><br />20 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| proprietor\_or\_officer.**identifications**<br /><br />array of objects<br /><br />Conditionally returned           | One or more objects containing personal identifications of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more `identifications` objects                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| proprietor\_or\_officer.identifications\[].**expiration\_date**<br /><br />string<br /><br />Conditionally returned | Expiration date of the identification, if applicable.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-dd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**type**<br /><br />string<br /><br />Returned                           | Type of identification.<br /><br />**NOTE:** Full Social Security Number (SSN) is required for US-based user cardholder KYC verification, using the `SSN` type. Full Employer Identification Number (EIN) is required for business cardholder KYC verification, using the `BUSINESS_TAX_ID` or `BUSINESS_NUMBER` type. For business directors, use one of SSN, TIN, SIN, or NIN. Nine digits only, no delimiters. `123456789`, for example.<br /><br />**Allowable Values:**<br /><br />`SSN`, `TIN`, `SIN`, `NIN`, `PASSPORT_NUMBER`, `DRIVERS_LICENSE`, `BUSINESS_NUMBER`, `BUSINESS_TAX_ID`, `TAXPAYER_REFERENCE`                                                                                                                                                                                 |
| proprietor\_or\_officer.identifications\[].**value**<br /><br />string<br /><br />Conditionally returned            | Number associated with the identification.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />**NOTE:** Digits only, do not use separators. For example: 123456789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| proprietor\_or\_officer.**last\_name**<br /><br />string<br /><br />Returned                                        | Last name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />2 char min, 48 char max for KYC verification (US-based accounts only); 255 char max otherwise                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| proprietor\_or\_officer.**middle\_name**<br /><br />string<br /><br />Conditionally returned                        | Middle name of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| proprietor\_or\_officer.**nationality**<br /><br />string<br /><br />Conditionally returned                         | Nationality of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max<br /><br />ISO 3166 two-character country codes. For example, the country code for the United States is `US`.<br /><br />The ISO maintains the <a href="https://www.iso.org/iso-3166-country-codes.html" target="_blank" rel="noopener">full list of ISO-3166 country codes</a>.                                                                                                                                                                                                                                                                                                                                                                                                         |
| proprietor\_or\_officer.**phone**<br /><br />string<br /><br />Conditionally returned                               | Telephone number of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Format: 510-555-1212 or 5105551212<br /><br />Do not insert a 1 before the area code.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**ssn**<br /><br />string<br /><br />Conditionally returned                                 | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN) of the business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />Nine digits, no delimiters. `123456789`, for example.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| proprietor\_or\_officer.**title**<br /><br />string<br /><br />Conditionally returned                               | Title of business proprietor or officer.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| taxpayer\_id<br /><br />string<br /><br />Conditionally returned                                                    | Taxpayer identifier of the business.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| token<br /><br />string<br /><br />Conditionally returned                                                           | Unique identifier of the business resource.<br /><br />If you do not include a token, the system generates one automatically. This token is necessary for use in other API calls, so we recommend that rather than let the system generate one, you use a simple string that is easy to remember. This value cannot be updated.<br /><br />**Allowable Values:**<br /><br />1–36 chars                                                                                                                                                                                                                                                                                                                                                                                                               |
| website<br /><br />string<br /><br />Conditionally returned                                                         | URL of the business' website.<br /><br />**Allowable Values:**<br /><br />255 char max                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |

<h2 id="get_businesses_token_ssn">
  Retrieve business identification number
</h2>

**Action:** `GET`\
**Endpoint:** `/businesses/{token}/ssn`

{/* <EndpointCard
title="Retrieves a specific business proprietor's SSN"
path="/businesses/{token}/ssn"
method="get"
/> */}

To retrieve the government-issued identification number of a business' proprietor, send a `GET` request to the `/businesses/{token}/ssn` endpoint. Include the `token` path parameter to specify the business whose identification number (SSN, ITIN, TIN, NIN, SIN) you want to return. You can indicate whether to return the full number or the last four digits only.

<h3 id="_url_path_parameters_9">
  URL path parameters
</h3>

| Fields                                      | Description                                                                                                              |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| token<br /><br />string<br /><br />Required | Unique identifier of the business resource.<br /><br />**Allowable Values:**<br /><br />Existing business resource token |

<h3 id="_url_query_parameters_7">
  URL query parameters
</h3>

| Fields                                           | Description                                                                                                                                                                                                                                                                                                                                                                                                          |
| ------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| full\_ssn<br /><br />boolean<br /><br />Optional | To return the full identification number, set to `true`. To return only the last four digits, set to `false`. If the `proprietor_or_officer.identifications` array contains only the last four digits of the identification number, the `/businesses/{token}/ssn` endpoint will return only the last four digits regardless of the `full_ssn` parameter.<br /><br />**Allowable Values:**<br /><br />`true`, `false` |

<h3 id="_response_body_12">
  Response body
</h3>

| Fields                                                  | Description                                                                                                                                |
| ------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| nin<br /><br />string<br /><br />Conditionally returned | National Identification Number (NIN).<br /><br />**Allowable Values:**<br /><br />255 char max                                             |
| sin<br /><br />string<br /><br />Conditionally returned | Social Insurance Number (SIN).<br /><br />**Allowable Values:**<br /><br />255 char max                                                    |
| ssn<br /><br />string<br /><br />Conditionally returned | Social Security Number (SSN) or Individual Taxpayer Identification Number (ITIN).<br /><br />**Allowable Values:**<br /><br />255 char max |
| tin<br /><br />string<br /><br />Conditionally returned | Taxpayer Identification Number (TIN).<br /><br />**Allowable Values:**<br /><br />255 char max                                             |

<h3 id="_sample_response_body_6">
  Sample response body
</h3>

```json JSON lines wrap theme={null}
{
  "ssn": "5555"
}
```
