POST api/chatbot/feedback
Feedback by User
Request Information
URI Parameters
None.
Body Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SessionId |
Session Id |
string |
None. |
| AIMessageId |
AI Message Id |
globally unique identifier |
None. |
| Comment |
Comment |
string |
None. |
| Like |
// 1 - Like, 0 - Dislike, null - No feedback |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"sessionId": "sample string 1",
"aiMessageId": "ee96d90a-c804-4571-8652-cd0bbbe2c7a6",
"comment": "sample string 2",
"like": 1
}
Response Information
Response Formats
application/json, text/json
Sample:
true