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 drivers list

GET
/company/{company_id}/driver
Endpoint to get a list of drivers for a company.
The+symbol in query parameters must be URL-encoded as%2B.

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

🟠401Login Required
🟠400Invalid `phone_number` parameter
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://fleet.roscolive.com/api/v1.0/company//driver?first_name=undefined&last_name=undefined&email=undefined&phone_number=undefined&guid=undefined&include_data=undefined&page_number=undefined&page_size=undefined'
Response Response Example
200 - Success
{
    "meta": {
        "code": 200
    },
    "response": {
        "drivers": [
            {
                "avatar": "https://s3.amazonaws.com/driverid-s3.roscocloud.com/staging/drivers/15/20250925140325.jpeg?...",
                "card_id": "9600A2F6",
                "card_scan_ts": "2025-11-12 10:26:56",
                "company_id": 66,
                "creation_ts": "2025-11-11 21:16:22",
                "device_id": 3333195348,
                "driver_gallery_complete": false,
                "driver_score": 0,
                "email": "asmith@example.com",
                "first_name": "Adam",
                "group_id": 5812,
                "group_name": "Installed Devices",
                "guid": "550e8400-e29b-41d4-a716-446655440002",
                "id": 2815,
                "last_consent_ts": "2025-11-12 13:57:57",
                "last_name": "Smith",
                "last_trip_ts": "2025-11-12 16:05:56",
                "last_vehicle_id": 3716512371,
                "last_vehicle_name": "Truck 1",
                "legal_consent": true,
                "name": "Adam Smith",
                "parent_driver_id": 222,
                "phone_number": "1234567890",
                "status": "offline",
                "status_from_driver_tb": "used",
                "type": "manual"
            },
            {
                "avatar": null,
                "card_id": "2A74F83A",
                "card_scan_ts": null,
                "company_id": 66,
                "creation_ts": "2025-11-11 21:47:12",
                "device_id": null,
                "driver_gallery_complete": false,
                "driver_score": 0,
                "email": "bsmith@example.com",
                "first_name": "Brad",
                "group_id": null,
                "group_name": null,
                "guid": null,
                "id": 2838,
                "last_consent_ts": null,
                "last_name": "Smith",
                "last_trip_ts": null,
                "last_vehicle_id": null,
                "last_vehicle_name": null,
                "legal_consent": false,
                "name": "Brad Smith",
                "parent_driver_id": null,
                "phone_number": null,
                "status": "offline",
                "status_from_driver_tb": "used",
                "type": "manual"
            }
        ],
        "total_items": 36
    },
    "result": "OK"
}
Modified at 2026-03-18 18:17:52
Previous
Create devices (auto-prov/DV4/DV6/DV7)
Next
Get driver scores
Built with