Skip to main content
POST
/
cases
/
{id}
/
ai-summary-feedback
Submit feedback for AI case summary
curl --request POST \
  --url https://api.wirespeed.co/cases/{id}/ai-summary-feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "liked": true,
  "reason": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Case identifier

Body

application/json
liked
boolean
required

Whether the user liked the AI summary

reason
string | null

Optional reason when the user dislikes the AI summary

Response

200 - undefined