RoscoLive API v1.0(v2.37.0)
  1. Event
RoscoLive API v1.0(v2.37.0)
  • Company
    • Create a company
      PUT
    • Get a company by ID
      GET
    • Update company
      POST
    • Get a company
      GET
    • Get companies
      GET
  • Device
    • Geotab
      • Get device by geotab device serial number
    • Update a device settings
      POST
    • Get reported DTCs for devices
      GET
    • Get company devices
      GET
    • Search devices
      GET
    • Play in-cab audible alert sound for device
      POST
    • Get list of trip dates for device
      GET
    • Get list of trips for passed device and date
      GET
    • Get a device
      GET
    • Get devices for all companies available for user
      GET
    • Get available video list for date
      GET
    • Get device list for multiple companies
      GET
  • Driver Scoring / Coaching
    • Get driver scores
      GET
    • Get unknown driver trips
      GET
  • Event
    • Request Custom Event
      PUT
    • Get Company Events
      GET
    • Send an event
      PUT
    • Get snapshot/location of event
      GET
    • Get Device Events for Period
      GET
    • Request custom video from device
      PUT
    • Get event filters list for date range in company
      GET
  • Group
    • Get devices of a group
  • Metadata
    • Get metadata of a device
    • Get metadata of devices
    • Get alerts of a driver
  1. Event

Send an event

PUT
/partners/events/custom_events
Partner requests event and gets snapshot by device ID. The format of timestamp is YYYYmmDDHHMMSS, UTC, eg: 20170808150120.
If an event near the target timestamp (-10s or +10s) exists into the cloud storgae, the existing event id will be returned, and the response status code will be 202 or 201.
"custom_event_type" parameter contains information about event.
Roles with endpoint access
RolePermission
Partner
Partner View
Custom Partner
Fleet Manager
Group Manager
User
Custom User

Request

Body Params multipart/form-data

Responses

🟢200200
application/json
Body

🟢200200 (device is offline)
🟠404404 (device is inactive)
🟠404404 (device doesn't exist)
🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/partners/events/custom_events' \
--form 'device_id=""' \
--form 'timestamp="{{$date.recent|format('\''yyyyMMddHHmmss'\'')}}"' \
--form 'custom_event_type=""'
Response Response Example
200 - 200
{
    "meta": {
        "code": 200
    },
    "response": {
        "request_id": "int"
    },
    "result": "OK"
}
Modified at 2025-11-04 14:39:55
Previous
Get Company Events
Next
Get snapshot/location of event
Built with