Skip to main content
POST
/
api
/
v4
/
{customerId}
/
{engineId}
/
search
/
summarize
/
feedback
AI Summary Feedback
curl --request POST \
  --url https://api.cludo.com/api/v4/{customerId}/{engineId}/search/summarize/feedback \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "summaryId": "<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
summaryId
string
required

The summaryId returned with the AI Summary response.

rating
enum<string>

Thumbs-style sentiment: positive or negative (same semantics as AI Chat feedback).

Available options:
positive,
negative
reason
string

Structured reason for the rating.

comment
string

Free-form user comment.

Response

Feedback recorded successfully. The response has no body.