curl --request GET \
--url https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/vehicle/latest \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/vehicle/latest"
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/vehicle/latest', 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/vehicle/latest",
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/vehicle/latest"
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/vehicle/latest")
.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/vehicle/latest")
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{
"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,
"vehicleId": "<string>",
"vehicleGroupName": "<string>",
"driverId": "<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",
"totalCount": 123
}Vehicle Journeys Latest
Returns summary journey details for a vehicle for each journey that was processed by Connect since the specified date/time. For a private journey only limited details are returned.
To use this endpoint to return details for only those vehicles where the journey was processed since a specified date/time, the procedure is as follows:
- Call the Vehicle Journey endpoint to see what journeys have been completed so far
- Call the Vehicle Journey Latest endpoint, specify the value for fromDateTime to be processedDateTime from the response of the call to Vehicle Journey endpoint
- Call the Vehicle Journey Latest endpoint, specify the value for fromDateTime to be processedDateTime from the previous call to this endpoint
Only vehicles that have completed a journey since the specified fromDateTime are included in the output response.
- The value for fromDateTime cannot be more than one hour in the past
- No details will be returned if the value specified for fromDateTime is a future date/time
The request limit on this endpoint is one request every 60 seconds. You will receive an HTTP status code of 429 (too many requests) 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/vehicle/latest \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.connectedfleet.michelin.com/vehicle-tracking/public/v1/customer/{customerId}/journey/detail/vehicle/latest"
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/vehicle/latest', 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/vehicle/latest",
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/vehicle/latest"
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/vehicle/latest")
.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/vehicle/latest")
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{
"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,
"vehicleId": "<string>",
"vehicleGroupName": "<string>",
"driverId": "<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",
"totalCount": 123
}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. Cannot be later then 'endDate'.
End date of time interval used for filtering. 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 vehicle used for filtering. @Visible validation, mandatory if 'groupId' is not provided, but cannot be both filled
Include journeys that have completed since this date, in UTC, in the format of YYYY-MM-DDThh:mm:ss.ms
Response
List for Journeys Details (LatestJourneyDetailsVehicleDto) selected by VehicleId, and from Execution time which is no older than hour ago from current time. May be empty list if now Journeys has been found.
Was this page helpful?
