GET api/LatestJobs/{id}/{value}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

value

string

Required

Body Parameters

None.

Response Information

Resource Description

LatLongModels
NameDescriptionTypeAdditional information
latLong

Collection of LatLong

None.

Response Formats

application/json, text/json

Sample:
{
  "latLong": [
    {
      "Lat": 1.1,
      "Long": 2.1
    },
    {
      "Lat": 1.1,
      "Long": 2.1
    }
  ]
}

text/xml

Sample:
<LatLongModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StenskivorAPP.Models">
  <latLong>
    <LatLong>
      <Lat>1.1</Lat>
      <Long>2.1</Long>
    </LatLong>
    <LatLong>
      <Lat>1.1</Lat>
      <Long>2.1</Long>
    </LatLong>
  </latLong>
</LatLongModels>