Updates this account by setting the values of the parameters passed. Any parameters not provided will be left unchanged. For example, if you pass the Website
parameter, that becomes this account's stored website, leaving all other parameters unchanged.
Note
These parameters cannot be updated:
Timezone
Currency
RegisteredForIndirectTax
IndirectTaxNumber
Contact your CSM (or submit a support ticket) if you need to change these values.
These parameters cannot be updated via API, but can be updated in the platform:
Industry
FinancialContact
TechnicalContact
CommercialContact
Parameters
CompanyName
optional
CompanyName
optionalThe name used for the account, which is usually the legal name for the associated company.
Website
optional
Website
optionalThe official company website URL for the account.
PrimaryPhoneNumber
optional
PrimaryPhoneNumber
optionalThe primary domestic contact number for the account.
PrimaryPhoneNumberCountry
required by PrimaryPhoneNumber
PrimaryPhoneNumberCountry
required by PrimaryPhoneNumber
Two-letter country code See ISO 3166-1 alpha-2.
OrganizationType
optional
OrganizationType
optionalOrganization type for the account. Available options will vary depending on the country that the business is registered in.
View enum values
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 |
EinSsnForeignTaxId
optional
EinSsnForeignTaxId
optionalEmployer Identification Number for the account, or in some cases, the Social Security Number (SSN) of the company owner, or a Tax ID number for non-US companies.
CorporateAddress
optional
CorporateAddress
optionalThe primary address for the account.
View child attributes
CorporateAddressLine1
string
CorporateAddressLine1
stringAddress line 1 (address number, street name)
CorporateAddressLine2
string
CorporateAddressLine2
stringAddress line 2 (building, unit, suite, etc. number)
CorporateAddressCity
string
CorporateAddressCity
stringCity, district, suburb, town, or village
CorporateAddressPostalCode
string
CorporateAddressPostalCode
stringZIP or postal code
CorporateAddressCountry
enum
CorporateAddressCountry
enumTwo-letter country code. See ISO 3166-1 alpha-2.
BillingAddress
optional
BillingAddress
optionalThe billing address for the account.
View child attributes
BillingAddressLine1
string
BillingAddressLine1
stringAddress line 1 (address number, street name)
BillingAddressLine2
string
BillingAddressLine2
stringAddress line 2 (building, unit, suite, etc. number)
BillingAddressCity
string
BillingAddressCity
stringCity, district, suburb, town, or village
BillingAddressPostalCode
string
BillingAddressPostalCode
stringZIP or postal code
BillingAddressCountry
enum
BillingAddressCountry
enumTwo-letter country code. See ISO 3166-1 alpha-2.
More parameters
View more parameters
SecondaryPhoneNumber
optional
SecondaryPhoneNumber
optionalA secondary domestic contact phone number for the account.
SecondaryPhoneNumberCountry
required by SecondaryPhoneNumber
SecondaryPhoneNumberCountry
required by SecondaryPhoneNumber
Two-letter country code See ISO 3166-1 alpha-2.
Returns
Returns the status of the request and the URI of the newly updated account. Returns an error if update parameters are invalid.
Example Request
curl 'https://api.impact.com/Advertisers/<AccountSID>/CompanyInformation' \
-X PUT \
-u '<AccountSID>:<AuthToken>' \
-H 'Accept: application/json' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'Name=Acme Corporation' \
-d 'Website=https://example.com' \
-d 'PrimaryPhoneNumber=18055550100' \
-d 'PrimaryPhoneNumberCountry=US' \
-d 'SecondaryPhoneNumber=12065550100' \
-d 'OrganizationType=CORP' \
-d 'EinSsnForeginTaxId=12-3456789' \
-d 'CorporateAddressAddressLine1=1640 Riverside Drive' \
-d 'CorporateAddressCity=Hill Valley' \
-d 'BillingAddressAddressLine1=112 1/2 Beacon St' \
-d 'BillingAddressCity=Boston'
Example Response
{
"Status": "OK",
"Uri": "/Advertisers/<AccountSID>/CompanyInformation/"
}