The legal entity object

What is a legal entity?

Legal Entity

A legal entity is an association, corporation, partnership, proprietorship, trust, or individual that has the legal capacity to enter into agreements or contracts, assume obligations, incur and pay debts, sue and be sued in its own right, and to be held responsible for its actions. The legal entity will contain legal name and tax identification number information.

Legal Entity vs Merchant
A merchant refers to the actual business that this legal entity owns. This may contain 'doing business as' or DBA information.

For most small or medium sized businesses there may not be much of a distinction between the legal entity and the merchant. The distinction could be a situation such as when there is a legal entity that operates several different businesses that in this case would be referred to as merchants. Nevertheless both the legal entity and merchant information needs to be provided for verification purposes.

Primary Owner
The "personalContact", "personalAddress", "personalTaxId", and "stakePercent" directly on the legal entity should be that of the primary owner. In a large or public company, the primary owner is a person with fiduciary responsibility for the company's finances. If only one owner is submitted, they are considered to own 100% stake. It is the responsibility of the platform to ensure the stake ownership information is accurate as required by law.

Additional Owners
Anyone else with a minimum of 25% ownership of the legal entity must be included under "additionalOwners".

Total ownership across the primary owner and any additional owners can not exceed 100%.

Additional Information

Entity Type
Some requirements for the legal entity will change depending on what type of entity you are.

ISP - Individual Sole Proprietorship
If the entityType is ISP, then the "personalTaxId" parameter should also be sent.
The stakePercent parameter should be "100", and no additional owners will be allowed.

LLC - Limited Liability Company
If the entityType is LLC, then the "businessTaxId" parameter should also be sent.

CORP - Corporation
If the entityType is CORP, then the "businessTaxId" parameter should also be sent.

Personal Tax Id
You may send us the last4PersonalTaxId if you don't have the full personalTaxId. We will attempt to underwrite the customer but we may respond back that the full personalTaxId is required. If you provide us a full personalTaxId, we will automatically replace the last4PersonalTaxId with the last four of the full personalTaxId that was provided.

Documentation

Request

ParameterSpecification
entityTypeType: String

["LLC", "ISP", "CORP"]
businessNameType: String
Length: 1-256

This name is strictly for legal verification purposes. Under certain conditions this may be the same as merchant name.
businessTaxIdType: String
Length: 9-10

The tax id belonging to the business.
businessSalesVolumeType: String
Length: 0-32

The annual sales volume.
businessAcceptedCardsType: Boolean

Whether or not the business accepted card payments in the past or is currently accepting card payments.
yearsInBusinessType: Integer String

The number of years this business has been operating.
personalTaxIdType: String
Length 9-10

The tax id for the owner of the business.
last4PersonalTaxIdType: String
Length 4

The last 4 digits of the tax id for the owner of the business.
businessAddressType: JSON Object

Address

The address of the legal entity.
personalAddressType: JSON Object

Address

The address of the primary contact for the legal entity.
personalContactType: JSON Object

Contact

The details of the primary contact for the legal entity.
stakePercentType Integer String
Length 2-3

The primary owner's stake in the entity.
additionalOwnersType: Array

AdditionalOwner

Any additional owners of the entity.

Response

All of the request parameters, except for businessTaxId and personalTaxId, will be returned in the response. In addition, the following parameters will also be returned in the response.

ParameterDescription
last4BusinessTaxIdThe last 4 digits of the businessTaxId.

Example

Legal entity request

{
  "legalEntity": {
    "entityType": "LLC",
    "businessName": "ACME Corporation",
    "businessTaxId": "817261728",
    "businessSalesVolume": "50000",
    "businessAcceptedCards": true,
    "yearsInBusiness": "7",
    "personalTaxId": "271827416",
    "businessAddress": {..},
    "personalAddress": {..},
    "personalContact": {..},
    "stakePercent": "75",
    "additionalOwners": [
      {..}
    ]
  }
}

Legal entity response

{
	"account": {
    "legalEntity": {
      "entityType": "LLC",
    	"businessName": "ACME Corporation",
    	"last4BusinessTaxId": "1728",
   	  "businessSalesVolume": "50000",
  	  "businessAcceptedCards": true,
      "yearsInBusiness": "7",
    	"last4PersonalTaxId": "7416",
    	"businessAddress": {..},
      "personalAddress": {..},
    	"personalContact": {..},
      "stakePercent": "75",
      "additionalOwners": [
        {..}
      ]
    }
  }
}