GET api/customer/trip/{id}/path
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TripPathEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| TimeStamp | date |
None. |
|
| Speed | decimal number |
None. |
|
| Direction | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Latitude": 1.1,
"Longitude": 2.1,
"TimeStamp": "2026-03-31T11:07:36.2438922+00:00",
"Speed": 3.1,
"Direction": 4.1
},
{
"Latitude": 1.1,
"Longitude": 2.1,
"TimeStamp": "2026-03-31T11:07:36.2438922+00:00",
"Speed": 3.1,
"Direction": 4.1
}
]
application/xml, text/xml
Sample:
<ArrayOfTripService.TripPathEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Saga.Kjorebok.Backend.Services">
<TripService.TripPathEntry>
<Direction>4.1</Direction>
<Latitude>1.1</Latitude>
<Longitude>2.1</Longitude>
<Speed>3.1</Speed>
<TimeStamp>2026-03-31T11:07:36.2438922+00:00</TimeStamp>
</TripService.TripPathEntry>
<TripService.TripPathEntry>
<Direction>4.1</Direction>
<Latitude>1.1</Latitude>
<Longitude>2.1</Longitude>
<Speed>3.1</Speed>
<TimeStamp>2026-03-31T11:07:36.2438922+00:00</TimeStamp>
</TripService.TripPathEntry>
</ArrayOfTripService.TripPathEntry>