1. Event
RoscoLive API v1.0
  • Device
    • Get a device
      GET
  • Driver Scoring / Coaching
    • Get drivers coaching events
      GET
  • Event
    • Get Company Events
      GET
    • Get Flagged Company Events
      GET
    • Request custom video from device
      PUT
    • Add event label
      POST
    • Add user feedback to event
      POST
    • Get event user feedback
      GET
    • Get event filters list for date range in company
      GET
  1. Event

Add user feedback to event

POST
/events/{event_id}/feedback
Add user feedback to event. The passed in feedback will then be stored on the event and retrievable for further review and data exploration.
The enum mapping for selections param are the following:
Enum valueDescription
1Event reported did not happen in video / was a false positive
2Video did not playback properly / quality issues with video
3Camera was positioned improperly / event happened outside of camera's view
4The event type captured in the video has little / no value to me and/or is unhelpful
5Camera / equipment issue caused the event to not be captured properly enough to be valuable.
6Other

User Role Permissions#

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

Request

Path Params

Body Params multipart/form-data

Responses

🟢200Success
application/json
Bodyapplication/json

🔴500Internal Server Error
🟠404Resource Not Found
🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://fleet.roscolive.com/api/v1.0/events/1234567/feedback' \
--form 'has_feedback="true"' \
--form 'selections="\"1,6\""' \
--form 'comment="{{\$lorem.sentences}}"'
Response Response Example
200 - Success
{
    "meta": {
        "code": 200
    },
    "response": "success",
    "result": "OK"
}
Modified at 2026-03-13 17:30:38
Previous
Add event label
Next
Get event user feedback
Built with