Synthesis
The group synthesis service provides a group’s scores and driving statistics. The data are obtained by averaging scores and aggregating trip data over the group's entire activity, the current month, and the current week.
The group synthesis is updated each time a new trip is analyzed.
If you have your admin API key, you can try the API via this link
Synthesis of group's scores
GET
https://service.drivequant.com/v3/drivekit/admin/group/synthesis
Get a synthesis of DriveQuant scores and statistics for a specified group.
Query Parameters
Name | Type | Description |
---|---|---|
label | string | Group name |
Headers
Name | Type | Description |
---|---|---|
DriveKit-Admin-API-Key | string | Admin API Key |
If you do not enter a label in the query, the service will return information from a group composed of all the drivers belonging to your organisation.
Response
The table below summarizes the list of synthesis data.
Field | Type | Description |
---|---|---|
groupInfos | Group information | |
scoresTimeRange | Driving statistics and average scores per period | |
scoresRoadContext | Driving statistics and average scores per road context |
GroupInfos
Field | Type | Description |
---|---|---|
id |
| Unique identifier of the group |
label |
| Group name |
numberDrivers |
| Number of driver registered in this group |
owner |
| Unique identifier of the group owner |
managers |
| Vector of unique identifiers of group managers |
visitors |
| Vector of unique identifiers of group visitors |
creationDate |
| Group creation date |
isActive |
| If the group is active or not |
ScoresTimeRange
For each theme (efficiency, safety, phoneDistraction, speeding, distance, acceleration, braking, adherence, fuelVolume, co2Mass):
Field | Type | Description |
---|---|---|
overall |
| Average score based on all trips |
currentWeek |
| Average score based on trips performed during the current week |
currentMonth |
| Average score based on trips performed during the current month |
ScoresRoadContext
Field | Type | Description |
---|---|---|
roadContext |
| Road context (see below) |
distance |
| Total driving distance (in km) |
duration |
| Total driving duration (in min) |
efficiencyScore |
| Average ecodriving score |
safetyScore |
| Average safety score |
Road context
Driving contexts are calculated from the GPS velocity. They are not based on map data.
Value | Description |
---|---|
| Speed below 10 km/h and distance between two stops greater than 100m |
| Speed below 30 km/h and distance between two stops greater than 100m |
| 30 km/h < Speed < 65 km/h |
| 65 km/h < Speed < 96 km/h |
| Speed > 96 km/h |
Last updated