Feedback
Retrieve all feedbacks for a chatflow
Authorizations
Path parameters
idstringRequired
Chatflow ID
Query parameters
chatIdstringOptional
Chat ID to filter feedbacks (optional)
sortOrderstring · enumOptionalDefault:
Sort order of feedbacks (optional)
asc
Possible values: startDatestring · date-timeOptional
Filter feedbacks starting from this date (optional)
endDatestring · date-timeOptional
Filter feedbacks up to this date (optional)
Responses
200
Successful operation
application/json
500
Internal server error
get
GET /feedback/{id} HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"chatflowid": "123e4567-e89b-12d3-a456-426614174000",
"chatId": "text",
"messageId": "123e4567-e89b-12d3-a456-426614174000",
"rating": "THUMBS_UP",
"content": "text",
"createdDate": "2025-06-25T06:22:22.570Z"
}
]
Create new feedback for a specific chat flow.
Authorizations
Body
idstring · uuidOptional
Unique identifier for the feedback
chatflowidstring · uuidOptional
Identifier for the chat flow
chatIdstringOptional
Identifier for the chat
messageIdstring · uuidOptional
Identifier for the message
ratingstring · enumOptionalPossible values:
Rating for the message
contentstringOptional
Feedback content
createdDatestring · date-timeOptional
Date and time when the feedback was created
Responses
200
Feedback successfully created
400
Invalid input provided
500
Internal server error
content
post
POST /feedback HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 243
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"chatflowid": "123e4567-e89b-12d3-a456-426614174000",
"chatId": "text",
"messageId": "123e4567-e89b-12d3-a456-426614174000",
"rating": "THUMBS_UP",
"content": "text",
"createdDate": "2025-06-25T06:22:22.570Z"
}
No content
Update a specific feedback
Authorizations
Path parameters
idstringRequired
Chat Message Feedback ID
Body
idstring · uuidOptional
Unique identifier for the feedback
chatflowidstring · uuidOptional
Identifier for the chat flow
chatIdstringOptional
Identifier for the chat
messageIdstring · uuidOptional
Identifier for the message
ratingstring · enumOptionalPossible values:
Rating for the message
contentstringOptional
Feedback content
createdDatestring · date-timeOptional
Date and time when the feedback was created
Responses
200
Feedback successfully updated
application/json
400
Invalid input provided
404
Feedback with the specified ID was not found
500
Internal server error
put
PUT /feedback/{id} HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 243
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"chatflowid": "123e4567-e89b-12d3-a456-426614174000",
"chatId": "text",
"messageId": "123e4567-e89b-12d3-a456-426614174000",
"rating": "THUMBS_UP",
"content": "text",
"createdDate": "2025-06-25T06:22:22.570Z"
}
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"chatflowid": "123e4567-e89b-12d3-a456-426614174000",
"chatId": "text",
"messageId": "123e4567-e89b-12d3-a456-426614174000",
"rating": "THUMBS_UP",
"content": "text",
"createdDate": "2025-06-25T06:22:22.570Z"
}
Last updated