The Legal Entity
object is where your legal entity information, like your payment- and tax-related information, is stored for a company associated with an impact.com brand account. Some attributes may be empty if no information exists.
Attributes
Id
string
Id
stringUnique impact.com identifier for the legal entity.
Name
string
Name
stringThe full name of the legal entity.
RegisteredForIndirectTax
boolean
RegisteredForIndirectTax
booleanWhether the entity is registered for indirect tax, such as VAT, GST, or HST.
IndirectTaxNumber
string
IndirectTaxNumber
stringThe tax number associated with VAT, GST, or HST registration.
OrganizationType
enum
OrganizationType
enumOrganization type of the entity. Available options will vary depending on the country that the business is registered in.
Possible enum values | |
---|---|
NONP_GOV | Non-Profit/Government, United States |
CORP | C Corporation, United States |
SOLE_IND | Individual/Sole Proprietor, United States |
LLC_LLP_LLS | Limited Liability Company / Limited Liability Partnership / S Corporation, United States |
TRUST | Trust company, United States |
SOLE_TRD | Sole Trader, Non-US |
PARTNERS | Partnership, Non-US |
LLC | Limited Liability Company, Non-US |
LLP | Limited Liability Partnership, Non-US |
COMPANY | Company, Non-US |
GOVERNMENT | Government, Non-US |
OTHER | Other classification, All countries |
EinSsnForeginTaxId
string
EinSsnForeginTaxId
stringThe Employer Identification Number for the account, or in some cases, the Social Security Number (SSN) of the entity, or a Tax ID number for non-US companies.
BillingAddress
object
BillingAddress
objectThe billing address for the entity.
View child attributes
AddressLine1
string
AddressLine1
stringAddress line 1 (address number, street name)
AddressLine2
string
AddressLine2
stringAddress line 2 (building, unit, suite, etc. number)
City
string
City
stringCity, district, suburb, town, or village
State
string
State
stringState or territory
PostalCode
string
PostalCode
stringZIP or postal code
Country
enum
Country
enumTwo-letter country code. See ISO 3166-1 alpha-2.
Uri
string
Uri
stringThe unique reference to this object in the impact.com API.
{
"LegalEntity": {
"Id": "325001",
"Name": "Acme Corporation",
"RegisteredForIndirectTax": "false",
"IndirectTaxNumber": "",
"OrganizationType": "CORP",
"EinSsnForeignTaxId": "XXXXX1234",
"BillingAddress": {
"AddressLine1": "742 Evergreen Terrace",
"AddressLine2": "",
"City": "Springfield",
"State": "MA",
"PostalCode": "01001",
"Country": "US"
},
"Uri": "/Advertisers/<AccountSID>/LegalEntities/"
}
}