Skip to main content
POST
/
v0
/
feedback
Send product feedback
curl --request POST \
  --url https://api.avidoai.com/v0/feedback \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-application-id: <api-key>' \
  --data '
{
  "feedback": "The annotations UI could use keyboard shortcuts."
}
'
{
  "success": true
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

x-application-id
string
header
required

Your unique Avido Application ID

Body

application/json

Feedback payload

Request body for submitting product feedback.

feedback
string
required

Free-form feedback message from the authenticated user.

Required string length: 1 - 5000
Example:

"Love the new dashboard — one small nit on the sidebar..."

Response

Feedback dispatched successfully

Result of a feedback submission.

success
boolean
required

Whether the feedback email was dispatched successfully.

Example:

true