Run in Apifox
This API returns GPS data list for multiple devices within a specified time interval. Please note that the interval of start-time and end-time should not be more than 10 minutes
Request Add parameter in header x-api-key
Example: x-api-key: ********************
Body Params application/json
{
"devIds" : [
"string"
] ,
"start-time" : "stringstringst" ,
"end-time" : "stringstringst"
} Request Code Samples
curl --location --request POST '/bulk-gpsdata' \
--header 'token;' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"devIds": [
"string"
],
"start-time": "stringstringst",
"end-time": "stringstringst"
}' Responses
[
{
"devId" : "string" ,
"tmTime" : 0 ,
"acconTime" : 0 ,
"direction" : 0 ,
"fuelWear" : 0 ,
"lat" : 0 ,
"lng" : 0 ,
"tripMileage" : 0 ,
"rpm" : 0 ,
"speed" : 0 ,
"deviceMileage" : 0 ,
"odometer" : 0 ,
"preference" : 0
}
] Modified at 2025-02-28 08:12:14