Skip to main content
POST
/
api
/
v4
/
{customerId}
/
{engineId}
/
search
/
answer
/
feedback
AI Chat Feedback
curl --request POST \
  --url https://api.cludo.com/api/v4/{customerId}/{engineId}/search/answer/feedback \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversationId": "<string>",
  "exchangeId": "<string>",
  "reason": "<string>",
  "comment": "<string>"
}
'
{
  "message": "The request could not be processed. Check the request body and required parameters."
}

Documentation Index

Fetch the complete documentation index at: https://cludo.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

SiteKey authentication. Pass the full value including the SiteKey prefix: SiteKey <base64(customerId:engineId:searchKey)>. Example: SiteKey dGVzdDoxMjM0NTY3Ojk4NzY1.

Path Parameters

customerId
integer
required

Your Cludo account ID.

engineId
integer
required

Search engine ID.

Body

application/json

Provide at least one of rating, reason, or comment with non-empty values.

conversationId
string
required

Must match the conversationId returned with the answer you are rating.

exchangeId
string
required

Must match the exchangeId for that answer.

rating
enum<string>

Thumbs-style sentiment. The API accepts these values case-insensitively (e.g. Positive is valid).

Available options:
positive,
negative
reason
string

Structured reason for the rating (e.g. a selected option from your UI).

comment
string

Free-form user comment.

Response

Feedback recorded successfully. The response has no body.