Przejdź do głównej zawartości

Collect visitor feedback on their AI Agent experience, with visitors prompted to rate the conversation at the end.

Ta treść nie jest jeszcze dostępna w Twoim języku.

Conversation Rating lets you collect visitor feedback on their AI Agent experience. When enabled, visitors are prompted at the end of their conversation to rate their experience — providing direct, actionable signal on how well your AI Agent is performing.

Ratings appear in the Dashboard under Conversations > Inbox alongside each conversation, and are included in conversation exports. Use this data to identify knowledge gaps, refine your AI Agent’s configuration, and track satisfaction trends over time.

Corresponds to Conversations > Inbox > Feedback settings in the Dashboard.

Scope: read_all

GET https://app.quickchat.ai/v1/api/conversation_ratings/configuration

Terminal window
curl https://app.quickchat.ai/v1/api/conversation_ratings/configuration \
-H 'Authorization: Bearer <API_TOKEN>'

Response 200 OK

{
"conv_rating_active": true,
"conv_rating_popup_active": true,
"conv_rating_question_codes": ["HELPFUL_THUMBS", "EXPERIENCE_THUMBS"]
}
FieldDescription
conv_rating_active
boolean
Enable visitor feedback collection at the end of conversations
conv_rating_popup_active
boolean
Show a popup prompt asking for feedback (must match conv_rating_active)
conv_rating_question_codes
array of strings
Types of feedback questions shown. Default: ["HELPFUL_THUMBS", "EXPERIENCE_THUMBS"]
Scope: write_all

PATCH https://app.quickchat.ai/v1/api/conversation_ratings/configuration

Terminal window
curl -X PATCH https://app.quickchat.ai/v1/api/conversation_ratings/configuration \
-H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-d '{
"conv_rating_active": true,
"conv_rating_popup_active": true
}'

Response 200 OK — Returns the updated conversation rating configuration.