GET api/tblLocs?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

tblLoc
NameDescriptionTypeAdditional information
Id

integer

None.

SupId

integer

None.

OrdId

integer

None.

EmpId

integer

None.

LoDate

date

None.

Sts

integer

None.

AreaId

integer

None.

Lat

decimal number

None.

Lng

decimal number

None.

aNote

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "SupId": 2,
  "OrdId": 3,
  "EmpId": 4,
  "LoDate": "2026-03-14T09:46:41.5929172-05:00",
  "Sts": 6,
  "AreaId": 7,
  "Lat": 8.1,
  "Lng": 9.1,
  "aNote": "sample string 10"
}

application/xml, text/xml

Sample:
<tblLoc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
  <AreaId>7</AreaId>
  <EmpId>4</EmpId>
  <Id>1</Id>
  <Lat>8.1</Lat>
  <Lng>9.1</Lng>
  <LoDate>2026-03-14T09:46:41.5929172-05:00</LoDate>
  <OrdId>3</OrdId>
  <Sts>6</Sts>
  <SupId>2</SupId>
  <aNote>sample string 10</aNote>
</tblLoc>