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>"
}
'import requests
url = "https://api.cludo.com/api/v4/{customerId}/{engineId}/search/summarize/feedback"
payload = {
"summaryId": "<string>",
"reason": "<string>",
"comment": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({summaryId: '<string>', reason: '<string>', comment: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/summarize/feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({summaryId: '<string>', reason: '<string>', comment: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/summarize/feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "The request could not be processed. Check the request body and required parameters."
}{
"status": "InternalServerError",
"code": 500,
"messages": [
"Error occur. Please contact support with error ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890"
]
}AI Summary
AI Summary Feedback
Submit feedback for an AI summary: rating (string), optional reason and comment.
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>"
}
'import requests
url = "https://api.cludo.com/api/v4/{customerId}/{engineId}/search/summarize/feedback"
payload = {
"summaryId": "<string>",
"reason": "<string>",
"comment": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({summaryId: '<string>', reason: '<string>', comment: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/summarize/feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({summaryId: '<string>', reason: '<string>', comment: '<string>'})
};
fetch('https://api.cludo.com/api/v4/{customerId}/{engineId}/search/summarize/feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "The request could not be processed. Check the request body and required parameters."
}{
"status": "InternalServerError",
"code": 500,
"messages": [
"Error occur. Please contact support with error ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890"
]
}Authorizations
SiteKeyBasicAuth
SiteKey authentication. Pass the full value including the SiteKey prefix: SiteKey <base64(customerId:engineId:searchKey)>. Example: SiteKey dGVzdDoxMjM0NTY3Ojk4NzY1.
Path Parameters
Your Cludo account ID.
Search engine ID.
Body
application/json
Response
Feedback recorded successfully. The response has no body.
Was this page helpful?

