Create feedback for an answer
Attach feedback to an Inconvo answer.
POST https://app.inconvo.ai/api/v1/conversations/answer/{answer_id}/feedback
Path Parameters
Section titled “Path Parameters”answer_id string
required
The ID of the answer to create feedback on.
Body Parameters
Section titled “Body Parameters”rating enum
required
The feedback rating for the response.
Allowed values: "positive"
or "negative"
.
comment string
A comment for providing additional explanation regarding feedback.
Example
Section titled “Example”curl -X POST 'https://app.inconvo.ai/api/v1/conversations/answer/ans_abc123/feedback' \ -H "Authorization: Bearer $INCONVO_API_KEY" \ -H 'Content-Type: application/json' \ -d $'{ "rating": "positive" "comment": "Great answer thanks!" }'
{ "id": "fb_abc123", "rating": "positive", "comment": "Great answer thanks!"}