GET api/RoundTripLogger?roundTripAssignment_Id={roundTripAssignment_Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
roundTripAssignment_Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RoundTripLoggerView
NameDescriptionTypeAdditional information
recorded_timestamp

string

None.

lat

decimal number

None.

lon

decimal number

None.

speed

decimal number

None.

orientation

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "recorded_timestamp": "sample string 1",
    "lat": 2.1,
    "lon": 3.1,
    "speed": 4.1,
    "orientation": 5.1
  },
  {
    "recorded_timestamp": "sample string 1",
    "lat": 2.1,
    "lon": 3.1,
    "speed": 4.1,
    "orientation": 5.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfRoundTripLoggerView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/galileoformobility.Models">
  <RoundTripLoggerView>
    <lat>2.1</lat>
    <lon>3.1</lon>
    <orientation>5.1</orientation>
    <recorded_timestamp>sample string 1</recorded_timestamp>
    <speed>4.1</speed>
  </RoundTripLoggerView>
  <RoundTripLoggerView>
    <lat>2.1</lat>
    <lon>3.1</lon>
    <orientation>5.1</orientation>
    <recorded_timestamp>sample string 1</recorded_timestamp>
    <speed>4.1</speed>
  </RoundTripLoggerView>
</ArrayOfRoundTripLoggerView>