Feedback
Retrieve all feedbacks for a chatflow
Chatflow ID
Chat ID to filter feedbacks (optional)
Sort order of feedbacks (optional)
asc
Possible values: Filter feedbacks starting from this date (optional)
Filter feedbacks up to this date (optional)
Successful operation
Internal server error
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-08-18T17:02:08.784Z"
}
]
Create new feedback for a specific chat flow.
Unique identifier for the feedback
Identifier for the chat flow
Identifier for the chat
Identifier for the message
Rating for the message
Feedback content
Date and time when the feedback was created
Feedback successfully created
Invalid input provided
Internal server error
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-08-18T17:02:08.784Z"
}
{
"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-08-18T17:02:08.784Z"
}
Update a specific feedback
Chat Message Feedback ID
Unique identifier for the feedback
Identifier for the chat flow
Identifier for the chat
Identifier for the message
Rating for the message
Feedback content
Date and time when the feedback was created
Feedback successfully updated
Invalid input provided
Feedback with the specified ID was not found
Internal server error
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-08-18T17:02:08.784Z"
}
{
"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-08-18T17:02:08.784Z"
}
Last updated