Get a short list of tracks
Get all user tracks with trackTokens and update dates.
All tracks in responses are sorted descending.
"updateDate" can be changed while processing a track by our platform. Our mobile SDK sends tracks to server, when recording is finished. It may record some part of a trip. It may send this part of the trip to server. Then it may detect movement again and start recording again.The second part will be sent to server later. SDK sends trips only when internet connection is stable. So, it can finish recording, save this part of trip in cache and send it for example only next day, when a good internet connection. If this happens, our platform merges this tracks into one and changes updateDate field value.
Get all tracks
GET
https://mobilesdk.telematicssdk.com/mobilesdk/stage/track/get_short_list/v1
Returns all user tracks from very beginning Authorization: DeviceToken in Header
Headers
Name | Type | Description |
---|---|---|
DeviceToken | string | DeviceToken (GUID) |
Get tracks by page
GET
https://mobilesdk.telematicssdk.com/mobilesdk/stage/track/get_short_list_page/v1
Authorization: DeviceToken in Header
Query Parameters
Name | Type | Description |
---|---|---|
Page | string | № of page |
Count | string | Number of tracks per page |
Headers
Name | Type | Description |
---|---|---|
DeviceToken | string | DeviceToken (GUID) |
Get tracks from specified date
GET
https://mobilesdk.telematicssdk.com/mobilesdk/stage/track/get_short_list_from_date/v1
Authorization: DeviceToken in Header
Query Parameters
Name | Type | Description |
---|---|---|
fromDate | string | 2019-08-13T23:01:03+03:00 |
Headers
Name | Type | Description |
---|---|---|
DeviceToken | string | DeviceToken (GUID) |
Last updated