Feedback
7 API calls in this section.
Submit Feedback
/feedback/submit?tenant_id={{tenant_id}}1curl --request POST "$ONDI_BASE_URL/feedback/submit?tenant_id={{tenant_id}}" \2 --header "Authorization: Bearer {{access_token}}" \3 --header "Content-Type: application/json" \4 --header "Content-Type: application/json" \5 --data '{6 "type": "BugReport",7 "severity": "Normal",8 "description": "Steps to reproduce...",9 "attachments": [10 "https://cdn.example.com/feedback/img-1.png",11 "https://cdn.example.com/feedback/vid-1.mp4"12 ],13 "source_panel": "admin",14 "path": "/dashboard",15 "locale": "en",16 "timezone": "UTC"17}'1{2 "type": "BugReport",3 "severity": "Normal",4 "description": "Steps to reproduce...",5 "attachments": [6 "https://cdn.example.com/feedback/img-1.png",7 "https://cdn.example.com/feedback/vid-1.mp4"8 ],9 "source_panel": "admin",10 "path": "/dashboard",11 "locale": "en",12 "timezone": "UTC"13}Query parameters
tenant_idOptional{{tenant_id}}
Request body fields
typeExampleExample field from the request body.
severityExampleExample field from the request body.
descriptionExampleExample field from the request body.
attachmentsExampleExample field from the request body.
source_panelExampleExample field from the request body.
pathExampleExample field from the request body.
localeExampleExample field from the request body.
timezoneExampleExample field from the request body.
Headers
AuthorizationOptionalBearer {{access_token}}
Content-TypeOptionalapplication/json
Responses
No response example is available for this endpoint yet.
List Feedbacks
/feedback/feedbacks?tenant_id={{tenant_id}}&status=&type=&severity=&from=&to=&page=1&limit=251curl --request GET "$ONDI_BASE_URL/feedback/feedbacks?tenant_id={{tenant_id}}&status=&type=&severity=&from=&to=&page=1&limit=25" \2 --header "Authorization: Bearer {{access_token}}"Query parameters
tenant_idOptional{{tenant_id}}
statusOptionaltypeOptionalseverityOptionalfromOptionaltoOptionalpageOptional1
limitOptional25
Headers
AuthorizationOptionalBearer {{access_token}}
Responses
No response example is available for this endpoint yet.
Get Feedback
/feedback/feedbacks/:id1curl --request GET "$ONDI_BASE_URL/feedback/feedbacks/:id" \2 --header "Authorization: Bearer {{access_token}}"Path parameters
idRequireduuid
Headers
AuthorizationOptionalBearer {{access_token}}
Responses
No response example is available for this endpoint yet.
Update Feedback Status
/feedback/feedbacks/:id1curl --request PATCH "$ONDI_BASE_URL/feedback/feedbacks/:id" \2 --header "Authorization: Bearer {{access_token}}" \3 --header "Content-Type: application/json" \4 --header "Content-Type: application/json" \5 --data '{6 "status": "Reviewed"7}'1{2 "status": "Reviewed"3}Path parameters
idRequireduuid
Request body fields
statusExampleExample field from the request body.
Headers
AuthorizationOptionalBearer {{access_token}}
Content-TypeOptionalapplication/json
Responses
No response example is available for this endpoint yet.
Get Feedback Settings
/feedback/feedback-settings1curl --request GET "$ONDI_BASE_URL/feedback/feedback-settings" \2 --header "Authorization: Bearer {{access_token}}"Headers
AuthorizationOptionalBearer {{access_token}}
Responses
No response example is available for this endpoint yet.
Update Feedback Settings
/feedback/feedback-settings1curl --request PUT "$ONDI_BASE_URL/feedback/feedback-settings" \2 --header "Authorization: Bearer {{access_token}}" \3 --header "Content-Type: application/json" \4 --header "Content-Type: application/json" \5 --data '{6 "send_on_received": true,7 "send_on_resolved": true,8 "send_to_system_admin": true,9 "system_admin_emails": [10 "ops@example.com"11 ]12}'1{2 "send_on_received": true,3 "send_on_resolved": true,4 "send_to_system_admin": true,5 "system_admin_emails": [6 "ops@example.com"7 ]8}Request body fields
send_on_receivedExampleExample field from the request body.
send_on_resolvedExampleExample field from the request body.
send_to_system_adminExampleExample field from the request body.
system_admin_emailsExampleExample field from the request body.
Headers
AuthorizationOptionalBearer {{access_token}}
Content-TypeOptionalapplication/json
Responses
No response example is available for this endpoint yet.
Enums
/FeedbackType: FeatureRequest | BugReport | Feedback FeedbackSeverity: Urgent | High | Normal | Low FeedbackStatus (server-managed): Received | Reviewed | Applied
1curl --request GET "$ONDI_BASE_URL/" \2 --header "Authorization: Bearer $ONDI_ACCESS_TOKEN"Responses
No response example is available for this endpoint yet.