1. Driver Scoring / Coaching
RoscoLive API v1.0(v2.40.0)
  • Report
    • Get custom report data
      GET
    • Get all events report for company
      GET
    • Get event count summary report for company devices
      GET
    • Update custom report
      POST
    • Create custom report for user
      PUT
  • Company
    • private
      • Create a new partner company
      • Update partner company info
      • Get a partner company
      • Disable a customer company
      • Enable a customer company
      • Disable a partner company
      • Enable a partner company
    • Create a company
      PUT
    • Get audit logs of a company
      GET
    • Get a company by ID
      GET
    • Update company
      POST
    • Get companies list
      GET
    • Get a company
      GET
    • Get companies
      GET
    • Get own partner company
      GET
  • User
    • Get Company Users
      GET
    • Get User Info from Email Address
      GET
    • Update a User's Info
      POST
    • Get my Own User Info
      GET
    • Create a User
      PUT
    • Update notification by email
      POST
  • Device
    • Update a device settings
      POST
    • Get company devices with modems
      GET
    • Get a device
      GET
    • Create devices (auto-prov/DV4/DV6/DV7)
      PUT
  • Driver Scoring / Coaching
    • Get company drivers list
      GET
    • Get driver scores
      GET
    • Add new driver to company
      PUT
    • Get company event score weights
      GET
    • Update company event score weights
      POST
  • Event
    • Get an Event of a Device by Start Time
    • Get an Event by ID and Storage Type
    • Get Company Events
    • Get Event by Company and ID
    • Get Flagged Company Events
    • Get Device Events for Period
    • Get list of company events
  • Metadata
    • Get alerts and events of devices for company
    • Get alerts of a driver
  • Fleet Configuration
    • Get profiles of a company
    • Get company default profile settings
    • Remove a company profile
    • Create new profile in a company
    • Get a company profile
    • Get profile history
    • Update a company profile
  • DocuWiki Support
    • Rosco customer registration
  • Installer App
    • Add install report
    • Installer registration
    • Install Rosco device
  1. Driver Scoring / Coaching

Get company event score weights

GET
/driver/scoring/weights
Get event score weights for driver scoring in a company. Driver score weights are on a scale of 1 to 5 with 1 being the least impactful.
Roles with endpoint access
RolePermission
Partner
Partner View
Custom Partner
Fleet Manager
Group Manager
User
Custom User

Request

Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🔴500Internal Server Error
🟠404Resource Not Found
🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://fleet.roscolive.com/api/v1.0/driver/scoring/weights?company_id={{%24number.int(min%3D0%2Cmax%3D9999)}}'
Response Response Example
200 - Success
{
	"meta": {
		"code": 200
	},
	"response": {
		"event_weights": [
			{
				"enabled": true,
				"name": "idling",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "adas_fcw",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "adas_ldw",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "adas_pcw",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "gsensor",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "distraction",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "drowsiness",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "yawning",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "phone_use",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "harshaccel",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "harshbraking",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "low_speeding",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "moderate_speeding",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "high_speeding",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "severe_speeding",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "max_speed",
				"weight": 4
			},
			{
				"enabled": true,
				"name": "seatbelt",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "smoking",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "camera_block",
				"weight": 5
			},
			{
				"enabled": true,
				"name": "stop_sign_violation",
				"weight": 2
			},
			{
				"enabled": true,
				"name": "traffic_light_violation",
				"weight": 2
			}
		]
	},
	"result": "OK"
}
Modified at 2026-05-19 10:54:20
Previous
Add new driver to company
Next
Update company event score weights
Built with