1. Metadata
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 driver scores
    • Add new driver to company
    • Get company event score weights
    • Update company event score weights
  • 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
    • Get alerts of a driver
      GET
  • 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. Metadata

Get alerts of a driver

GET
/driver/{driver_id}/alerts
Get alerts of a driver.
Type of event_types can be executed by one or several following parameters: 'gsensor', 'speed', 'critical_gsensor','driver', 'sensor', 'pending', 'custom', 'ADAS-PCW', 'ADAS-FCW', 'ADAS-LCW', 'ADAS-HW', 'stopsignviolation_rsw', 'stopsignviolation_bsw', 'trafficlightviolation_saw', 'trafficlightviolation_svw', 'high_speeding', 'low_speeding', 'moderate_speeding', 'severe_speeding'.
alert_types parameter can have one or several values separated by ',': 'SD Card Failure', 'Improper Shutdown', 'Camera Failure'

User Role Permissions#

The following table shows which user roles are allowed to send requests using this API endpoint.
RolePermission
Partner
Partner View
Custom Partner
Fleet Manager
Group Manager
User
Custom User

Request

Path Params

Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠400Invalid datetime format
🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://fleet.roscolive.com/api/v1.0/driver/1415/alerts?start_ts=20250801000000&end_ts=20250819235959&alert_types={{OPTIONAL%3A%20alert_types}}&event_types={{OPTIONAL%3A%20event_types}}&page_number={{OPTIONAL%3A%20page_number}}&page_size={{OPTIONAL%3A%20page_size}}&no_alarms={{OPTIONAL%3A%20no_alarms}}'
Response Response Example
200 - Example 1
{
    "meta": {
        "code": 200
    },
    "response": [
        {
            "alarms": [
                {
                    "asset_id": null,
                    "event_id": null,
                    "id": 160686,
                    "timestamp": "2025-10-15 17:38:41",
                    "type": "Distraction"
                },
                {
                    "asset_id": null,
                    "event_id": null,
                    "id": 160360,
                    "timestamp": "2025-10-09 18:21:17",
                    "type": "Max Speed"
                }
            ],
            "asset_id": 123,
            "device_id": 4914264277,
            "driver_id": 71,
            "driver_name": "Mark Lewis",
            "events": [
                {
                    "asset_id": null,
                    "event_type": "Sensor",
                    "id": 1908402,
                    "timestamp": "2025-10-11 18:37:10"
                }
            ],
            "vehicle_name": "Truck A"
        },
        {
            "alarms": [
                {
                    "asset_id": null,
                    "event_id": null,
                    "id": 161079,
                    "timestamp": "2025-10-22 18:41:19",
                    "type": "UncleanShutdown"
                }
            ],
            "asset_id": 321,
            "device_id": 2782942955,
            "driver_id": 71,
            "driver_name": "Paul Grant",
            "events": [
                {
                    "asset_id": null,
                    "event_type": "Sensor",
                    "id": 1908649,
                    "timestamp": "2025-10-23 17:05:37"
                }
            ],
            "vehicle_name": "Truck B"
        }
    ],
    "result": "OK"
}
Modified at 2026-03-25 17:50:48
Previous
Get alerts and events of devices for company
Next
Get profiles of a company
Built with