MngGetAIFeedbackByFilter¶
GET ai/feedback
Ratings with the rated text. The working use is the -1 filter: those answers,
with their questions, are what goes into the golden set that every model or prompt change
is tested against.
Access Control¶
Allowed: admin. Records of the administrator's brand.
Parameters¶
| Parameter | Type | Description |
|---|---|---|
rating |
int | 1 or -1 |
limit |
int | Up to 500 |
offset |
int | Rows to skip |
Response Data¶
{
"rows": [
{
"id": 44,
"messageId": "msg_1c7…",
"conversationId": "cnv_8f3a…",
"rating": -1,
"comment": "Quoted the wrong threshold",
"actorId": 501,
"createdAt": "2026-09-17 10:14:02",
"question": "Why was position 500103 closed?",
"answer": "The position was closed by stop out…"
}
],
"count": 12
}
Errors¶
| Code | Error | Description |
|---|---|---|
403 |
AI_ACCESS_DENIED |
The session is not an administrator |