Feedback

List all chat message feedbacks for a chatflow

get

Retrieve all feedbacks for a chatflow

Authorizations
Path parameters
idstringRequired

Chatflow ID

Query parameters
chatIdstringOptional

Chat ID to filter feedbacks (optional)

sortOrderstring · enumOptional

Sort order of feedbacks (optional)

Default: ascPossible 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
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 chat message feedback

post

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 · enumOptional

Rating for the message

Possible values:
contentstringOptional

Feedback content

createdDatestring · date-timeOptional

Date and time when the feedback was created

Responses
200
Feedback successfully created
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 chat message feedback

put

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 · enumOptional

Rating for the message

Possible values:
contentstringOptional

Feedback content

createdDatestring · date-timeOptional

Date and time when the feedback was created

Responses
200
Feedback successfully updated
application/json
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