For the complete documentation index, see llms.txt. This page is also available as Markdown.

Legal Entities

List Legal Entities

get

Retrieves a list of legal entities associated with this account.

Path parameters
AccountSIDstringRequired

The unique identifier for the account.

Responses
200

A paginated list of legal entity objects.

application/json
get/Advertisers/{AccountSID}/LegalEntities
GET /Advertisers/{AccountSID}/LegalEntities HTTP/1.1
Host: api.impact.com
Accept: */*
200

A paginated list of legal entity objects.

{
  "LegalEntities": [
    {
      "Id": "12345",
      "Name": "Acme Corporation Legal Entity",
      "RegisteredForIndirectTax": "false",
      "IndirectTaxNumber": "123456789",
      "OrganizationType": "CORP",
      "BillingAddress": {
        "AddressLine1": "1640 Riverside Dr.",
        "AddressLine2": "Suite 400",
        "City": "Hill Valley",
        "State": "CALIFORNIA",
        "PostalCode": "90210",
        "Country": "US"
      },
      "Uri": "/Advertisers/<AccountSID>/LegalEntities/12345",
      "EinSsnForeignTaxId": "12-3456789"
    }
  ]
}

Get a Single Legal Entity

get

Retrieves a single legal entity associated with this account by its unique ID.

Path parameters
AccountSIDstringRequired

The unique identifier for the account.

LegalEntityIdstringRequired

The unique identifier for the legal entity.

Responses
200

A single legal entity object.

application/json

Stores legal entity information like payment and tax details.

IdstringOptional

Unique impact.com identifier for the legal entity.

Example: 12345
NamestringOptional

The full name of the legal entity.

Example: Acme Corporation Legal Entity
RegisteredForIndirectTaxstringOptional

Whether the entity is registered for indirect tax.

Example: false
IndirectTaxNumberstringOptional

The tax number associated with VAT, GST, or HST registration.

Example: 123456789
OrganizationTypestring · enumOptional

Organization type for the account. Available options will vary depending on the country that the business is registered in.

Example: CORPPossible values:
Uristring · uri-referenceOptional

The unique reference to this object in the impact.com API.

Example: /Advertisers/<AccountSID>/LegalEntities/12345
EinSsnForeignTaxIdstringOptional

The Employer Identification Number, Social Security Number, or a foreign Tax ID.

Example: 12-3456789
get/Advertisers/{AccountSID}/LegalEntities/{LegalEntityId}
GET /Advertisers/{AccountSID}/LegalEntities/{LegalEntityId} HTTP/1.1
Host: api.impact.com
Accept: */*
200

A single legal entity object.

{
  "Id": "12345",
  "Name": "Acme Corporation Legal Entity",
  "RegisteredForIndirectTax": "false",
  "IndirectTaxNumber": "123456789",
  "OrganizationType": "CORP",
  "BillingAddress": {
    "AddressLine1": "1640 Riverside Dr.",
    "AddressLine2": "Suite 400",
    "City": "Hill Valley",
    "State": "CALIFORNIA",
    "PostalCode": "90210",
    "Country": "US"
  },
  "Uri": "/Advertisers/<AccountSID>/LegalEntities/12345",
  "EinSsnForeignTaxId": "12-3456789"
}

Last updated