Add user feedback to event
POST
/events/{event_id}/feedback
eventfeedback
selections
param are the following:Enum value | Description |
---|---|
1 | Event reported did not happen in video / was a false positive |
2 | Video did not playback properly / quality issues with video |
3 | Camera was positioned improperly / event happened outside of camera's view |
4 | The event type captured in the video has little / no value to me and/or is unhelpful |
5 | Camera / equipment issue caused the event to not be captured properly enough to be valuable. |
6 | Other |
User Role Permissions
User Role | Allowed |
---|---|
Partner | |
Partner View | |
Custom Partner | Requires permissions to be enabled |
Fleet Manager | |
Group Manager | |
User | |
Custom User | Requires permissions to be enabled |
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '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"
}
Request
Path Params
event_id
integer
required
Example:
1234567
Body Params multipart/form-data
has_feedback
boolean
required
Example:
true
selections
string
required
Example:
"1,6"
comment
string
optional
<= 255 characters
Example:
{{$lorem.sentences}}
Responses
Modified at 2025-06-15 10:46:58