1. Report
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. Report

Get custom report data

GET
/reports/custom/{report_id}/generate
Gets a custom report either owned or shared with the user. The report object will contain all of the report fields that were selected for the report when it was created or last updated.
Roles with endpoint access
RolePermission
Partner
Partner View
Custom Partner
Fleet Manager
Group Manager
User
Custom User

Request

Path Params

Query Params

Responses

🟢200Success
application/json
Body

🟠400Invalid input
🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fleet.roscolive.com/api/v1.0/reports/custom//generate?start_date=&end_date=&company_id='
Response Response Example
200 - Example 1
{
    "meta": {
        "code": 200
    },
    "response": [
        {
            "adas_fcw": 0,
            "adas_hw": 0,
            "adas_ldw": 0,
            "adas_pcw": 0,
            "critical_gsensor": 0,
            "custom": 0,
            "device_id": 0,
            "distraction": 0,
            "driver": 0,
            "drowsiness": 0,
            "first_connected_ts": "Fri, 11 Jun 2021 18:20:38 GMT",
            "harshaccel": 0,
            "harshbraking": 0,
            "high_speeding": 0,
            "imei": "string",
            "input_sensor": 0,
            "last_connected_ts": "string",
            "low_speeding": 0,
            "manufacturer": "string",
            "model": "string",
            "moderate_speeding": 0,
            "no_sd_card": true,
            "phone_use": 0,
            "seatbelt": 0,
            "severe_speeding": 0,
            "smoking": 0,
            "speeding": 0,
            "stop_sign_violation": 0,
            "tailgating": 0,
            "traffic_light_violation": 0,
            "vehicle_name": "string",
            "version": "string",
            "vin": "string",
            "yawning": 0
        }
    ],
    "result": "OK"
}
Modified at 2026-03-25 15:37:32
Next
Get all events report for company
Built with