Retrieves the latest status for each device, including its last known GPS location, the timestamp it was last active, and the most recent recorded speed.
Endpoint
POST https://api.gps.office.robeeta.com/Device/GetDeviceLogs
Authorization: Api key (query parameter)
Header: Content-Type: application/json
Request Body:
Response Body:
https://api.gps.office.robeeta.com/Device/GetDeviceLogs?ApiKey={ApiKey}
{
"Response": "OK",
"DeviceLogs": [
{
"DeviceId": 101,
"DeviceName": "TRUCK-001",
"DepartmentName": "Logistics",
"DeviceStatus": "Active",
"ModelName": "GPS-Tracker-X1",
"OrgId": 10,
"CompanyId": 1001,
"CreatedDate": "2025-08-04T09:15:30Z",
"LastSeen": "2025-08-04T11:20:45Z",
"LastLocation": "12.9716,77.5946",
"Speed": 62.5,
"SpeedLimit": 80.0,
"TotalDistanceKm": 15.23,
}
]
}
Response Example - Error
{
"Response": "Invalid Apikey",
"DeviceLogs": []
}