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": "f8eb00e7-8181-40fe-a834-1bdb9b26c31c",
"comment": "sample string 2",
"like": 1
}
Response Information
Response Formats
application/json, text/json
Sample:
true