Get a list of tracks with paging

Get Tracks

GET https://mobilesdk.telematicssdk.com/mobilesdk/stage/track/get_tracks/v1

Get a list of tracks Authorization: DeviceToken in header

Query Parameters

NameTypeDescription

startDate

string

Time filter. Format: 1990-01-01 by default. You can use "2019-09-10T12:37:49+02:00"

endDate

string

Time filter. Format: 2019-09-10T12:37:49+02:00"

lang

string

"en" by default

pageNumber

string

page number // 0 by default

pageSize

string

tracks per page (0 = unlimited) // 0 by default

Headers

NameTypeDescription

DeviceToken

string

DeviceToken

{
   "Result": {
     "Tracks": [
         {
             "TrackToken": "d8ece0fc-de27-4c86-9c30-5a129a9725fc",
             "StartDate": "2018-06-14T14:53:07+04:00",
             "AddressStart": "N De Anza Blvd 10853, Cupertino, Santa Clara, United States",
             "EndDate": "2018-06-14T14:55:24+04:00",
             "AddressEnd": "Arboretum Dr 5893, Woodland Acres-the Highlands, Los Altos, Santa Clara, United States",
             "Status": "Active",
                "Distance": 0.728,
                "Duration": 3.3666666666666667,
                "AccelerationCount": 0,
                "DecelerationCount": 0,
                "Rating": 5.0,
                "RatingCornering": 5.0,
                "RatingAcceleration": 5.0,
                "RatingBraking": 5.0,
                "RatingSpeeding": 5.0,
                "RatingPhoneUsage": 5.0,
                "RatingTimeOfDay": 3.0,
                "PhoneUsage": 0.0,
                "MidOverSpeedMileage": 0.0,
                "HighOverSpeedMileage": 0.0,
                "TrackOriginCode": "OriginalDriver",
                "OriginChanged": false,
                "ShareType": "NotShared",
                "CityStart": "Podgorica",
                "CityFinish": "Podgorica",
                "Rating100": 100.0,
                "RatingCornering100": 100.0,
                "RatingAcceleration100": 100.0,
                "RatingBraking100": 100.0,
                "RatingSpeeding100": 100.0,
                "RatingPhoneDistraction100": 100.0,
                "AddressStartParts": {
                    "CountryCode": "USA",
                    "PostalCode": "81000",
                    "City": "Podgorica",
                    "District": "Podgorica",
                    "Street": "Ulica Vasa Raičkovića",
                    "House": "20"
                },
                "AddressFinishParts": {
                    "CountryCode": "USA",
                    "PostalCode": "81000",
                    "City": "New-York",
                    "District": "Podgorica",
                    "Street": "Ulica Svetlane Kane Radević",
                    "House": "1"
                },
        "Tags": [
          {
            "Name": "Sample Tag",
            "SourceType": "UserApp",
            "Source": "Sample application module name"
          },
                
         ...
      ],
      "Code": 200
   }
}

Fields Dictionary

Field

Description

Draft - received and processed track but without scoring yet

Active - processed track with scoring

Deleted - processed track which is not participating in user scoring count.

Can be changed by these methods

AccelerationCount

Number of accelerations per track

DecelerationCount

Number of brakes per track

MidOverSpeedMileage

Total mileage with overspeeding more than X km/h

HighOverSpeedMileage

Total mileage with overspeeding more than X km/h

TrackOriginCode

OriginalDriver

Passanger Bus Train Taxi Bicycle Motorcycle Walking Running Other

OriginChanged

If track origin was changed (false/true).

Last updated