Retrieve an account

Retrieves detailed information about a company. The company is determined by the Account SID and the Auth Token you use.

Parameters

No parameters.

Returns

Returns a company information object.

Example request


curl 'https://api.impact.com/Mediapartners/<AccountSID>/CompanyInformation' \
  -X GET \
  -u '<AccountSid>:<AuthToken>' \
  -H 'Accept: application/json'

Example response


{
  "CompanyName": "ACME Inc",
  "PrimaryPromotionalMethod": "EMAIL",
  "PromotionalMethods": "EMAIL,CASHBACK",
  "Website": "http://impact.com",
  "PrimaryPhoneNumber": "123456789",
  "PrimaryPhoneNumberCountry": "US",
  "SecondaryPhoneNumber": "",
  "SecondaryPhoneNumberCountry": "",
  "MinimumContactRating": "1",
  "Timezone": "(GMT -04:00) Eastern Time (US & Canada)",
  "Currency": "USD",
  "RegisteredForIndirectTax": "false",
  "IndirectTaxNumber": "",
  "OrganizationType": "NONP_GOV",
  "EinSsnForeignTaxId": "0",
  "CorporateAddress": {
    "AddressLine1": "P Sherman",
    "AddressLine2": "42 Wallaby Way",
    "City": "Sydney",
    "State": "",
    "PostalCode": "12345",
    "Country": "AU"
  },
  "BillingAddress": {
    "AddressLine1": "P Sherman",
    "AddressLine2": "42 Wallaby Way",
    "City": "Sydney",
    "State": "",
    "PostalCode": "12345",
    "Country": "AU"
  },
  "FinancialContact": {
    "UserId": "",
    "Name": "",
    "Email": "",
    "WorkPhoneNumber": "",
    "WorkPhoneNumberCountry": "",
    "CellPhoneNumber": "",
    "CellPhoneNumberCountry": ""
  },
  "TechnicalContact": {
    "UserId": "",
    "Name": "",
    "Email": "",
    "WorkPhoneNumber": "",
    "WorkPhoneNumberCountry": "",
    "CellPhoneNumber": "",
    "CellPhoneNumberCountry": ""
  },
  "CommercialContact": {
    "UserId": "",
    "Name": "",
    "Email": "",
    "WorkPhoneNumber": "",
    "WorkPhoneNumberCountry": "",
    "CellPhoneNumber": "",
    "CellPhoneNumberCountry": ""
  },
  "Uri": "/Mediapartners/<AccountSID>/CompanyInformation"
}