curl --request GET \
--url https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"totalPages": 123,
"totalCount": 123,
"items": [
{
"vehicleRegistration": "<string>",
"vehicleName": "<string>",
"driverName": "<string>",
"totalTimeIdledSeconds": 123,
"totalTimeDrivenSeconds": 123,
"totalTimeDrivenWithPtoSeconds": 123,
"totalTimeDrivenWithoutPtoSeconds": 123,
"totalTimeIdledWithPtoSeconds": 123,
"totalTimeStoppedSeconds": 123,
"startDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z",
"startAddress": "<string>",
"endAddress": "<string>",
"distanceKm": 123,
"maximumSpeedKph": 123,
"averageSpeedKph": 123,
"startCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"endCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"startOdometer": 123,
"endOdometer": 123,
"startLocationName": "<string>",
"endLocationName": "<string>",
"startLocationId": "<string>",
"endLocationId": "<string>",
"idlingFidelity": 123,
"startElectricRangeKm": 123,
"startElectricRangeKmEstimated": true,
"endElectricRangeKm": 123,
"endElectricRangeKmEstimated": true,
"startElectricBatteryLevelPercent": 123,
"startElectricBatteryLevelPercentEstimated": true,
"endElectricBatteryLevelPercent": 123,
"endElectricBatteryLevelPercentEstimated": true,
"startFuelLevelPercentage": 123,
"endFuelLevelPercentage": 123,
"startFuelLevelLitres": 123,
"endFuelLevelLitres": 123,
"startEngineHours": 123,
"endEngineHours": 123,
"fuelUsedPetrolEquivalentLitres": 123,
"co2Kg": 123,
"fuelUsedLitres": 123,
"electricUsedkWh": 123,
"electricUsedkWhEstimated": true,
"gasUsedKg": 123,
"driverId": "<string>",
"driverGroupName": "<string>",
"vehicleId": "<string>",
"commonAttributesFromJourneyTimeSheetDetail": {
"personId": "<string>",
"assetId": "<string>",
"classification": "<string>",
"startCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"endCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"entityGroupName": "<string>",
"assetRegistration": "<string>",
"personName": "<string>",
"startOdometer": 123,
"endOdometer": 123,
"startAddress": "<string>",
"endAddress": "<string>",
"distanceKm": 123,
"journeyCount": 123,
"ptoEnabled": true,
"idlingFidelity": 123,
"startFuelLevelLitres": 123,
"endFuelLevelLitres": 123,
"evConsumptionKwh": 123,
"gasConsumptionKg": 123,
"evConsumptionKwhEstimated": true,
"linkedAssetName": "<string>",
"speedSensitive": true,
"totalTimeIdledSeconds": 123,
"totalTimeDrivenSeconds": 123,
"maximumSpeedKph": 123,
"averageSpeedKph": 123,
"totalTimeDrivenWithPtoSeconds": 123,
"totalTimeDrivenWithoutPtoSeconds": 123,
"totalTimeIdledWithPtoSeconds": 123,
"totalTimeStoppedSeconds": 123,
"totalFuel": 123,
"requestNodeName": "<string>",
"startLocationName": "<string>",
"endLocationName": "<string>",
"startLocationId": "<string>",
"endLocationId": "<string>",
"startElectricRangeKm": 123,
"startElectricRangeKmEstimated": true,
"endElectricRangeKm": 123,
"endElectricRangeKmEstimated": true,
"startElectricBatteryLevelPercent": 123,
"startElectricBatteryLevelPercentEstimated": true,
"endElectricBatteryLevelPercent": 123,
"endElectricBatteryLevelPercentEstimated": true,
"startFuelLevelPercentage": 123,
"endFuelLevelPercentage": 123,
"startEngineHours": 123,
"endEngineHours": 123,
"private": true,
"endDate": "2023-11-07T05:31:56Z",
"startDate": "2023-11-07T05:31:56Z",
"assetHierarchyNodeId": "<string>",
"personHierarchyNodeId": "<string>"
},
"commonAttributesFromAsset": {
"id": "<string>",
"customerId": "<string>",
"registration": "<string>",
"name": "<string>",
"vin": "<string>",
"assetType": "<string>",
"make": "<string>",
"model": "<string>",
"version": "<string>",
"visible": true,
"defaultDriverId": "<string>",
"tempDriverId": "<string>",
"tempDriverExpiry": "2023-11-07T05:31:56Z",
"tempDriverNextJourneyOnly": true,
"litresPer100KmBenchmark": {
"kms": 123,
"litres": 123,
"litresPer100Km": 123
},
"manualOdometerReading": {
"kms": 123,
"readingDateTime": "2023-11-07T05:31:56Z",
"odometerKmsLastModified": "2023-11-07T05:31:56Z"
},
"currentOdometer": {
"kms": 123,
"readingDateTime": "2023-11-07T05:31:56Z",
"odometerKmsLastModified": "2023-11-07T05:31:56Z"
},
"cumulativeRuntimeSeconds": 123,
"cumulativePtoRuntimeSeconds": 123,
"cumulativeIdleTimeSeconds": 123,
"cumulativeRuntimeSecondsLastModified": "2023-11-07T05:31:56Z",
"cumulativeFuelUsed": 123,
"vehicle": {
"ecoTaxApplicable": true,
"vehicleWeight": 123,
"euroEngine": 123,
"numberOfAxles": 123,
"fuelType": "<string>"
},
"assetFeatureTags": [],
"historicAssetFeatureTags": [],
"tags": [
"<string>"
],
"nextService": {
"kmsToService": 123,
"daysToService": 123,
"estimatedKmsPerDay": 123,
"dueKms": 123,
"overdue": true,
"dueDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"referenceDueDate": "2023-11-07T05:31:56Z",
"firstJourneyDueKms": 123,
"firstJourneyDate": "2023-11-07T05:31:56Z",
"manualEntry": true,
"manualDueDate": "2023-11-07T05:31:56Z"
},
"serviceHistory": [
{
"dueKms": 123,
"serviceDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"serviceOdometer": 123,
"serviceDueDate": "2023-11-07T05:31:56Z",
"overdue": true,
"manualEntry": true
}
],
"defects": [
{
"code": "<string>",
"type": "<string>",
"status": "<string>",
"eventDateTime": "2023-11-07T05:31:56Z",
"details": {}
}
],
"makeModelVersion": "<string>",
"interestedParties": [
"<string>"
],
"interestedPartyTags": [
"<string>"
],
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": {
"currencyCode": "<string>",
"displayName": "<string>",
"symbol": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"numericCodeAsString": "<string>"
},
"dateStatusChange": "2023-11-07T05:31:56Z",
"primaryFuelSource": {
"fuelCapacity": 123,
"averageConsumption": 123,
"averageRangeKm": 123
},
"secondaryFuelSource": {
"fuelCapacity": 123,
"averageConsumption": 123,
"averageRangeKm": 123
},
"peripherals": [
{
"value": "<string>",
"type": "<string>"
}
],
"enginePowerKW": 123,
"boxType": "<string>",
"boxTypes": [
"<string>"
],
"distributionId": 123,
"electricVehicleCompatibility": {
"estimateBatteryLevelPercent": true,
"estimateRange": true,
"estimateConsumption": true,
"estimateSecondaryConsumption": true
},
"assetTypeGroup": "<string>",
"lastManualEngineHoursUpdate": "2023-11-07T05:31:56Z",
"weightSettings": {
"unladenWeightKg": 123,
"maxGrossWeightKg": 123
},
"dimensionSettings": {
"heightMeters": 123,
"lengthMeters": 123,
"widthMeters": 123
},
"usageSettings": {
"usageHoursPerDay": 123,
"usageDaysPerWeek": [
123
],
"profitabilityDistanceKm": 123,
"stoppedThresholdHours": 123
},
"brakeSettings": {
"absPer100Km": 123,
"brakingPer100Km": 123
},
"rpmBandThresholds": {
"blueRPMBand": 123,
"yellow1RPMBand": 123,
"greenRPMBand": 123,
"yellow2RPMBand": 123,
"redRPMBand": 123,
"extraRPMBand": 123
},
"isDriverIdentification": true,
"isPrivacy": true,
"lastService": {
"dueKms": 123,
"serviceDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"serviceOdometer": 123,
"serviceDueDate": "2023-11-07T05:31:56Z",
"overdue": true,
"manualEntry": true
},
"previousService": {
"dueKms": 123,
"serviceDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"serviceOdometer": 123,
"serviceDueDate": "2023-11-07T05:31:56Z",
"overdue": true,
"manualEntry": true
},
"manualService": true,
"tempDriverIdRaw": "<string>",
"tempDriverExpiryRaw": "2023-11-07T05:31:56Z",
"tempDriverNextJourneyOnlyRaw": true,
"estimateBatteryLevelPercent": true,
"estimateConsumption": true,
"estimateRange": true
}
}
],
"processedDateTime": "2023-11-07T05:31:56Z"
}Driver Journeys
Returns summary journey details for a driver for each journey that started in the specified period. For a private journey only limited details are returned. The end date of the journey does not have to be within the specified period. The value specified for the endDate cannot be before startDate.
Either driverId or groupId must be specified. If driverId is specified, then only journeys for the specified driver are included in the output. If groupId is specified, then the details for all drivers in the specified group are included in the output. Either driverId or groupId can be specified as an input parameter, an error is returned if both are specified.
If there are more than 50 journeys that match the search criteria, then by default only the first 50 journeys are returned. To view details of the other journeys you will need to specify values for pageSize and pageIndex.
Asset Day Limit:
The asset day limit on this endpoint is 1000 asset days. You will receive an HTTP status code of 400 (Bad input parameters) and no details will be returned if you exceed this restriction.
curl --request GET \
--url https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/driver")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"totalPages": 123,
"totalCount": 123,
"items": [
{
"vehicleRegistration": "<string>",
"vehicleName": "<string>",
"driverName": "<string>",
"totalTimeIdledSeconds": 123,
"totalTimeDrivenSeconds": 123,
"totalTimeDrivenWithPtoSeconds": 123,
"totalTimeDrivenWithoutPtoSeconds": 123,
"totalTimeIdledWithPtoSeconds": 123,
"totalTimeStoppedSeconds": 123,
"startDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z",
"startAddress": "<string>",
"endAddress": "<string>",
"distanceKm": 123,
"maximumSpeedKph": 123,
"averageSpeedKph": 123,
"startCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"endCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"startOdometer": 123,
"endOdometer": 123,
"startLocationName": "<string>",
"endLocationName": "<string>",
"startLocationId": "<string>",
"endLocationId": "<string>",
"idlingFidelity": 123,
"startElectricRangeKm": 123,
"startElectricRangeKmEstimated": true,
"endElectricRangeKm": 123,
"endElectricRangeKmEstimated": true,
"startElectricBatteryLevelPercent": 123,
"startElectricBatteryLevelPercentEstimated": true,
"endElectricBatteryLevelPercent": 123,
"endElectricBatteryLevelPercentEstimated": true,
"startFuelLevelPercentage": 123,
"endFuelLevelPercentage": 123,
"startFuelLevelLitres": 123,
"endFuelLevelLitres": 123,
"startEngineHours": 123,
"endEngineHours": 123,
"fuelUsedPetrolEquivalentLitres": 123,
"co2Kg": 123,
"fuelUsedLitres": 123,
"electricUsedkWh": 123,
"electricUsedkWhEstimated": true,
"gasUsedKg": 123,
"driverId": "<string>",
"driverGroupName": "<string>",
"vehicleId": "<string>",
"commonAttributesFromJourneyTimeSheetDetail": {
"personId": "<string>",
"assetId": "<string>",
"classification": "<string>",
"startCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"endCoordinate": {
"longitude": -1.3421,
"latitude": 53.8304
},
"entityGroupName": "<string>",
"assetRegistration": "<string>",
"personName": "<string>",
"startOdometer": 123,
"endOdometer": 123,
"startAddress": "<string>",
"endAddress": "<string>",
"distanceKm": 123,
"journeyCount": 123,
"ptoEnabled": true,
"idlingFidelity": 123,
"startFuelLevelLitres": 123,
"endFuelLevelLitres": 123,
"evConsumptionKwh": 123,
"gasConsumptionKg": 123,
"evConsumptionKwhEstimated": true,
"linkedAssetName": "<string>",
"speedSensitive": true,
"totalTimeIdledSeconds": 123,
"totalTimeDrivenSeconds": 123,
"maximumSpeedKph": 123,
"averageSpeedKph": 123,
"totalTimeDrivenWithPtoSeconds": 123,
"totalTimeDrivenWithoutPtoSeconds": 123,
"totalTimeIdledWithPtoSeconds": 123,
"totalTimeStoppedSeconds": 123,
"totalFuel": 123,
"requestNodeName": "<string>",
"startLocationName": "<string>",
"endLocationName": "<string>",
"startLocationId": "<string>",
"endLocationId": "<string>",
"startElectricRangeKm": 123,
"startElectricRangeKmEstimated": true,
"endElectricRangeKm": 123,
"endElectricRangeKmEstimated": true,
"startElectricBatteryLevelPercent": 123,
"startElectricBatteryLevelPercentEstimated": true,
"endElectricBatteryLevelPercent": 123,
"endElectricBatteryLevelPercentEstimated": true,
"startFuelLevelPercentage": 123,
"endFuelLevelPercentage": 123,
"startEngineHours": 123,
"endEngineHours": 123,
"private": true,
"endDate": "2023-11-07T05:31:56Z",
"startDate": "2023-11-07T05:31:56Z",
"assetHierarchyNodeId": "<string>",
"personHierarchyNodeId": "<string>"
},
"commonAttributesFromAsset": {
"id": "<string>",
"customerId": "<string>",
"registration": "<string>",
"name": "<string>",
"vin": "<string>",
"assetType": "<string>",
"make": "<string>",
"model": "<string>",
"version": "<string>",
"visible": true,
"defaultDriverId": "<string>",
"tempDriverId": "<string>",
"tempDriverExpiry": "2023-11-07T05:31:56Z",
"tempDriverNextJourneyOnly": true,
"litresPer100KmBenchmark": {
"kms": 123,
"litres": 123,
"litresPer100Km": 123
},
"manualOdometerReading": {
"kms": 123,
"readingDateTime": "2023-11-07T05:31:56Z",
"odometerKmsLastModified": "2023-11-07T05:31:56Z"
},
"currentOdometer": {
"kms": 123,
"readingDateTime": "2023-11-07T05:31:56Z",
"odometerKmsLastModified": "2023-11-07T05:31:56Z"
},
"cumulativeRuntimeSeconds": 123,
"cumulativePtoRuntimeSeconds": 123,
"cumulativeIdleTimeSeconds": 123,
"cumulativeRuntimeSecondsLastModified": "2023-11-07T05:31:56Z",
"cumulativeFuelUsed": 123,
"vehicle": {
"ecoTaxApplicable": true,
"vehicleWeight": 123,
"euroEngine": 123,
"numberOfAxles": 123,
"fuelType": "<string>"
},
"assetFeatureTags": [],
"historicAssetFeatureTags": [],
"tags": [
"<string>"
],
"nextService": {
"kmsToService": 123,
"daysToService": 123,
"estimatedKmsPerDay": 123,
"dueKms": 123,
"overdue": true,
"dueDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"referenceDueDate": "2023-11-07T05:31:56Z",
"firstJourneyDueKms": 123,
"firstJourneyDate": "2023-11-07T05:31:56Z",
"manualEntry": true,
"manualDueDate": "2023-11-07T05:31:56Z"
},
"serviceHistory": [
{
"dueKms": 123,
"serviceDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"serviceOdometer": 123,
"serviceDueDate": "2023-11-07T05:31:56Z",
"overdue": true,
"manualEntry": true
}
],
"defects": [
{
"code": "<string>",
"type": "<string>",
"status": "<string>",
"eventDateTime": "2023-11-07T05:31:56Z",
"details": {}
}
],
"makeModelVersion": "<string>",
"interestedParties": [
"<string>"
],
"interestedPartyTags": [
"<string>"
],
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": {
"currencyCode": "<string>",
"displayName": "<string>",
"symbol": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"numericCodeAsString": "<string>"
},
"dateStatusChange": "2023-11-07T05:31:56Z",
"primaryFuelSource": {
"fuelCapacity": 123,
"averageConsumption": 123,
"averageRangeKm": 123
},
"secondaryFuelSource": {
"fuelCapacity": 123,
"averageConsumption": 123,
"averageRangeKm": 123
},
"peripherals": [
{
"value": "<string>",
"type": "<string>"
}
],
"enginePowerKW": 123,
"boxType": "<string>",
"boxTypes": [
"<string>"
],
"distributionId": 123,
"electricVehicleCompatibility": {
"estimateBatteryLevelPercent": true,
"estimateRange": true,
"estimateConsumption": true,
"estimateSecondaryConsumption": true
},
"assetTypeGroup": "<string>",
"lastManualEngineHoursUpdate": "2023-11-07T05:31:56Z",
"weightSettings": {
"unladenWeightKg": 123,
"maxGrossWeightKg": 123
},
"dimensionSettings": {
"heightMeters": 123,
"lengthMeters": 123,
"widthMeters": 123
},
"usageSettings": {
"usageHoursPerDay": 123,
"usageDaysPerWeek": [
123
],
"profitabilityDistanceKm": 123,
"stoppedThresholdHours": 123
},
"brakeSettings": {
"absPer100Km": 123,
"brakingPer100Km": 123
},
"rpmBandThresholds": {
"blueRPMBand": 123,
"yellow1RPMBand": 123,
"greenRPMBand": 123,
"yellow2RPMBand": 123,
"redRPMBand": 123,
"extraRPMBand": 123
},
"isDriverIdentification": true,
"isPrivacy": true,
"lastService": {
"dueKms": 123,
"serviceDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"serviceOdometer": 123,
"serviceDueDate": "2023-11-07T05:31:56Z",
"overdue": true,
"manualEntry": true
},
"previousService": {
"dueKms": 123,
"serviceDate": "2023-11-07T05:31:56Z",
"updatedDateTime": "2023-11-07T05:31:56Z",
"serviceOdometer": 123,
"serviceDueDate": "2023-11-07T05:31:56Z",
"overdue": true,
"manualEntry": true
},
"manualService": true,
"tempDriverIdRaw": "<string>",
"tempDriverExpiryRaw": "2023-11-07T05:31:56Z",
"tempDriverNextJourneyOnlyRaw": true,
"estimateBatteryLevelPercent": true,
"estimateConsumption": true,
"estimateRange": true
}
}
],
"processedDateTime": "2023-11-07T05:31:56Z"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Start date of time interval used for filtering. Mandatory and cannot be later then 'endDate'.
End date of time interval used for filtering. Mandatory and cannot be sooner then 'startDate'.
Id of Group used for filtering. @Visible validation, mandatory if 'id' is not provided, but cannot be both filled
Number of page, default = 0.
Batches per page, default = 50.
Exclude child groups, default = FALSE.
Id of driver used for filtering. @Visible validation, mandatory if 'groupId' is not provided, but cannot be both filled
"driver-id"
Response
List for Journeys Details (TimestampedWithPaginationResult) selected by GroupId or DriverId, and from given Execution time. May be empty list if now Journeys has been found.
Generic wrapper for paginated API responses containing items, pagination metadata, and processing timestamp.
Total number of pages based on the pageSize.
Total number of items that matched the search parameters.
Array of items.
Show child attributes
Show child attributes
Date and time when the request was completed, in UTC, in format of YYYY-MM-DDThh:mm:ss.ms.
Was this page helpful?
