This API will give latest Fuel Level, Engine Coolant Temperature, Battery Voltage of given Devices
Request
Add parameter in header x-api-key
Example:x-api-key: ********************
Access token which was generated earlier
Body Params application/json
Device id list, Comma separated String
{
"acctId": "string",
"devIds": "string"
}
Request samples
curl --location --request POST '/devices/latest-ecu-data' \
--header 'token;' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--data-raw '{
"acctId": "string",
"devIds": "string"
}'
Responses
devices
array [object {2}]
optional{
"devices": [
{
"devId": "string",
"deviceData": {
"fuelLevel": {
"unit": "string",
"value": "string"
},
"batteryVoltage": {
"unit": "string",
"value": "string"
},
"engineCoolantTemp": {
"unit": "string",
"value": "string"
}
}
}
]
}
Modified at 2025-02-28 08:12:14