Skip to main content
GET
/
customer
/
{customerId}
/
speeding
/
detail
/
vehicle
/
latest
Latest speeding events for a vehicle
curl --request GET \
  --url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/speeding/detail/vehicle/latest \
  --header 'Authorization: Bearer <token>'
{
  "totalPages": 123,
  "totalCount": 123,
  "items": [
    {
      "startTime": "2023-11-07T05:31:56Z",
      "maxSpeedTime": "2023-11-07T05:31:56Z",
      "endTime": "2023-11-07T05:31:56Z",
      "assetId": "<string>",
      "driverId": "<string>",
      "driverName": "<string>",
      "assetRegistration": "<string>",
      "assetName": "<string>",
      "startAddress": "<string>",
      "endAddress": "<string>",
      "duration": 123,
      "distanceKms": 123,
      "groupName": "<string>",
      "averageSpeed": 123,
      "maxSpeed": 123,
      "maxPercentageOver": 123,
      "maxSpeedAddress": "<string>",
      "maxSpeedCoordinates": {
        "longitude": 123,
        "latitude": 123
      },
      "startCoordinates": {
        "longitude": 123,
        "latitude": 123
      },
      "endCoordinates": {
        "longitude": 123,
        "latitude": 123
      },
      "speedingPointCount": 123,
      "assetSpeedLimitKph": 123,
      "roadSpeedLimitKph": 123,
      "maxSpeedDistanceKm": 123,
      "startLocation": "<string>",
      "endLocation": "<string>",
      "maxSpeedLocation": "<string>",
      "startLocationId": "<string>",
      "endLocationId": "<string>",
      "maxSpeedLocationId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customerId
string
required

Query Parameters

vehicleId
string

Identifier (alphanumeric) of a vehicle.

groupId
string

Identifier of a group.

fromDateTime
string<date-time>

From date and time for latest queries.

Response

Latest set of speeding events for the customerId and assetId

Paginated response containing speeding episode results

totalPages
integer

Total number of pages based on the pageSize.

totalCount
integer

Total number of speeding episodes that matched the search parameters.

items
object[]

Array of speeding episodes.