Fleet - Dashboard

Get general info of fleet

This API is to get general information of the fleet, for example: time zone, count of impact events, summary of a trip

Securityapi key and Authorization
Request
query Parameters
tz
string

the user timezone, default is UTC

Responses
200

OK

get/V2/dashboard
Response samples
application/json
{
  • "uq": "3903dc78-9349-41a0-9662-d1e33de117f8",
  • "doc_version": "latest",
  • "result": true,
  • "code": "S00000",
  • "message": "string",
  • "build": "string",
  • "impact_count": {
    },
  • "trip_summary": {
    }
}

Get highlight list

This API can get highlighted information, such as:

driver ID, driver avatar, driver name, driver status (activated/inactivated), remaining days till expiration, highlighted event is expired or not, snapshot, timestamp of the event, type of the event, event video upload status

Securityapi key and Authorization
Request
query Parameters
order
string (Order)

Enum of order

ASC

DESC

Enum: "ASC" "DESC"
offset
integer <int32>
Default: 0

For pagination offset

limit
integer <int32>
Default: 5

For pagination limit

Responses
200

OK

get/V2/dashboard/highlight-list
Response samples
application/json
{
  • "uq": "3903dc78-9349-41a0-9662-d1e33de117f8",
  • "doc_version": "latest",
  • "result": true,
  • "code": "S00000",
  • "message": "string",
  • "build": "string",
  • "device_cid": "string",
  • "driver_avatar": "string",
  • "driver_id": 0,
  • "driver_name": "string",
  • "driver_status": 0,
  • "expired": true,
  • "expiry": 0,
  • "is_new": true,
  • "snapshots": [
    ],
  • "ticket": "string",
  • "timestamp": 0,
  • "trip_id": 0,
  • "type": 1,
  • "type_name": "string",
  • "upload_status": 0
}