GET api/Company/GetValues?AuthenticationGUID={AuthenticationGUID}&ExternalID={ExternalID}

Returns a Company class for the supplied AuthenticationGUID and ExternalID

Request Information

Parameters

NameDescriptionAdditional information
AuthenticationGUID
The Authentication GUID provided to you by your Account Manager

Define this parameter in the request URI.

ExternalID
An ExternalID that you have passed to EHX as an outside identifier

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "CompanyID": 1,
  "CompanyName": "sample string 2",
  "ExportExternalID": "sample string 3",
  "FEIN": "sample string 4",
  "ImportExternalID": "sample string 5",
  "SingleManager_YN": "sample string 6",
  "Status": "sample string 7"
}

application/xml, text/xml

Sample:
<MainAPI.CompanyClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EFAPIWeb">
  <CompanyID>1</CompanyID>
  <CompanyName>sample string 2</CompanyName>
  <ExportExternalID>sample string 3</ExportExternalID>
  <FEIN>sample string 4</FEIN>
  <ImportExternalID>sample string 5</ImportExternalID>
  <SingleManager_YN>sample string 6</SingleManager_YN>
  <Status>sample string 7</Status>
</MainAPI.CompanyClass>