Company Information
Retrieves the details of the brand account, determined by the API keys used for authentication.
The unique identifier for the account.
An object containing the account's company information.
Brand name for the account; usually the legal name of the company.
Acme CorporationOfficial website URL for the brand or company.
https://www.example.comPrimary domestic contact number for the account.
1235550100Two-letter ISO 3166-1 alpha-2 country code.
USA secondary domestic contact phone number for the account.
3215550100Two-letter ISO 3166-1 alpha-2 country code.
USMinimum star rating (1-5) a partner must have to see contact information.
1Timezone used for the account.
(GMT -08:00) Pacific Time (US & Canada); TijuanaThree-letter ISO 4217 code for the account's default currency.
USDWhether the account is registered for indirect tax.
trueUnique identifier used for VAT, GST, or HST registration.
123456789Organization type for the account. Available options will vary depending on the country that the business is registered in.
CORPPossible values: Employer Identification Number, Social Security Number, or a foreign Tax ID.
12-3456789The unique reference to this object in the impact.com API.
/Advertisers/<AccountSID>/CompanyInformationGET /Advertisers/{AccountSID}/CompanyInformation HTTP/1.1
Host: api.impact.com
Accept: */*
An object containing the account's company information.
{
"CompanyName": "Acme Corporation",
"Industry": {
"IndustryId": "833",
"IndustryName": "Miscellaneous Retail Stores, Not Elsewhere Classified"
},
"Website": "https://www.example.com",
"PrimaryPhoneNumber": "1235550100",
"PrimaryPhoneNumberCountry": "US",
"SecondaryPhoneNumber": "3215550100",
"SecondaryPhoneNumberCountry": "US",
"MinimumContactRating": "1",
"Timezone": "(GMT -08:00) Pacific Time (US & Canada); Tijuana",
"Currency": "USD",
"RegisteredForIndirectTax": "true",
"IndirectTaxNumber": "123456789",
"OrganizationType": "CORP",
"EinSsnForeignTaxId": "12-3456789",
"CorporateAddress": {
"AddressLine1": "1640 Riverside Dr.",
"AddressLine2": "Suite 400",
"City": "Hill Valley",
"State": "CALIFORNIA",
"PostalCode": "90210",
"Country": "US"
},
"BillingAddress": {
"AddressLine1": "1640 Riverside Dr.",
"AddressLine2": "Suite 400",
"City": "Hill Valley",
"State": "CALIFORNIA",
"PostalCode": "90210",
"Country": "US"
},
"FinancialContact": {
"UserId": "1234567",
"Name": "Road Runner",
"Email": "finance@example.com",
"WorkPhoneNumber": "2065550100",
"WorkPhoneNumberCountry": "US",
"CellPhoneNumber": "2065550133",
"CellPhoneNumberCountry": "US"
},
"TechnicalContact": {
"UserId": "1234567",
"Name": "Road Runner",
"Email": "finance@example.com",
"WorkPhoneNumber": "2065550100",
"WorkPhoneNumberCountry": "US",
"CellPhoneNumber": "2065550133",
"CellPhoneNumberCountry": "US"
},
"CommercialContact": {
"UserId": "1234567",
"Name": "Road Runner",
"Email": "finance@example.com",
"WorkPhoneNumber": "2065550100",
"WorkPhoneNumberCountry": "US",
"CellPhoneNumber": "2065550133",
"CellPhoneNumberCountry": "US"
},
"SecurityContact": {
"UserId": "1234567",
"Name": "Road Runner",
"Email": "finance@example.com",
"WorkPhoneNumber": "2065550100",
"WorkPhoneNumberCountry": "US",
"CellPhoneNumber": "2065550133",
"CellPhoneNumberCountry": "US"
},
"Uri": "/Advertisers/<AccountSID>/CompanyInformation"
}Updates the account by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Note: The following parameters cannot be updated via API: Timezone, Currency, RegisteredForIndirectTax, IndirectTaxNumber. The following parameters can only be updated in the platform: Industry, FinancialContact, TechnicalContact, SecurityContact, CommercialContact.
The corporate address fields (CorporateAddressLine1, CorporateAddressLine2, CorporateAddressCity, CorporateAddressPostalCode, CorporateAddressCountry) update the corporate address. The billing address fields (BillingAddressLine1, BillingAddressLine2, BillingAddressCity, BillingAddressPostalCode, BillingAddressCountry) update the billing address. These are returned as nested CorporateAddress and BillingAddress objects by the GET endpoint.
The unique identifier for the account.
Fields available for updating company information.
The name used for the account.
Acme CorporationThe official company website URL.
https://www.example.comThe primary domestic contact number.
1235550100Two-letter country code for the primary phone number (required if PrimaryPhoneNumber is provided).
USA secondary domestic contact phone number.
3215550100Two-letter country code for the secondary phone number (required if SecondaryPhoneNumber is provided).
USOrganization type for the account. Available options will vary depending on the country that the business is registered in.
CORPPossible values: EIN, SSN, or foreign Tax ID.
12-3456789Address line 1 for the corporate address.
1640 Riverside Dr.Address line 2 for the corporate address.
Suite 400City for the corporate address.
Hill ValleyPostal code for the corporate address.
90210Two-letter country code for the corporate address.
USAddress line 1 for the billing address.
112 1/2 Beacon St.Address line 2 for the billing address.
Floor 2City for the billing address.
BostonPostal code for the billing address.
02116Two-letter country code for the billing address.
USThe request was successful.
Indicates whether the update was successful.
OKThe unique reference to the updated resource.
/Advertisers/<AccountSID>/CompanyInformationPUT /Advertisers/{AccountSID}/CompanyInformation HTTP/1.1
Host: api.impact.com
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 623
"CompanyName='Acme Corporation'&Website='https://www.example.com'&PrimaryPhoneNumber='1235550100'&PrimaryPhoneNumberCountry='US'&SecondaryPhoneNumber='3215550100'&SecondaryPhoneNumberCountry='US'&OrganizationType='CORP'&EinSsnForeignTaxId='12-3456789'&CorporateAddressLine1='1640 Riverside Dr.'&CorporateAddressLine2='Suite 400'&CorporateAddressCity='Hill Valley'&CorporateAddressPostalCode='90210'&CorporateAddressCountry='US'&BillingAddressLine1='112 1/2 Beacon St.'&BillingAddressLine2='Floor 2'&BillingAddressCity='Boston'&BillingAddressPostalCode='02116'&BillingAddressCountry='US'"The request was successful.
{
"Status": "OK",
"Uri": "/Advertisers/<AccountSID>/CompanyInformation"
}Last updated
