GET api/Location?locationId={locationId}

Gets the specified location identifier.

Request Information

Parameters

Name Description
locationId

(param in the URI)

The location identifier.

Response Information

Location.

Response body formats

application/json, text/json

Sample:
{
  "Company_Cd": "",
  "Location_Cd": "",
  "Location_Desc": "",
  "Street1_Txt": "",
  "Street2_Txt": "",
  "City_Nm": "",
  "State_Cd": "",
  "ZipCode_Txt": "",
  "AreaCode_Txt": "",
  "Phone_Txt": "",
  "FaxAreaCode_Txt": "",
  "FaxPhone_Txt": "",
  "User_Cd": "",
  "Program_Nm": "",
  "LastUpdated_Dt": "2000-01-01T00:00:00",
  "LocationId": 0,
  "CompanyId": 0
}

application/xml, text/xml

Sample:
<Location xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.API.Internal.Models.HrPremier">
  <AreaCode_Txt></AreaCode_Txt>
  <City_Nm></City_Nm>
  <CompanyId>0</CompanyId>
  <Company_Cd></Company_Cd>
  <FaxAreaCode_Txt></FaxAreaCode_Txt>
  <FaxPhone_Txt></FaxPhone_Txt>
  <LastUpdated_Dt>2000-01-01T00:00:00</LastUpdated_Dt>
  <LocationId>0</LocationId>
  <Location_Cd></Location_Cd>
  <Location_Desc></Location_Desc>
  <Phone_Txt></Phone_Txt>
  <Program_Nm></Program_Nm>
  <State_Cd></State_Cd>
  <Street1_Txt></Street1_Txt>
  <Street2_Txt></Street2_Txt>
  <User_Cd></User_Cd>
  <ZipCode_Txt></ZipCode_Txt>
</Location>