Wayfound
  • Welcome to Wayfound
  • Key Concepts
  • Getting Started
  • Manager
    • Performance
    • Overview
    • Alignment
    • Meetings
    • Report Sharing
  • User Feedback
  • Agent Management Best Practices
  • Agents
    • The Agents Page
    • Definition
    • Guidelines
    • Connecting Agents
    • Connecting Tool Calls
    • Connecting User Feedback
    • Connecting other Events
    • OpenTelemetry Event Data
  • Sessions
    • Recordings
    • Suggestions
    • Link Clicks
  • Visitors
  • Settings
    • Organizations
    • User Management
    • Integrations
      • HubSpot Integration
      • Salesforce Integration
    • Actions
  • API
Powered by GitBook
On this page
  1. Agents

Connecting User Feedback

After Connecting Agents to Wayfound, you can also track user feedback ratings. This allows Wayfound to generate satisfaction metrics in Performance reports. You can do so by adding a "user_feedback" event to "messages". Two types of user feedback are supported: "stars" and "thumbs_up_down":

{
    "timestamp": "2025-05-07T10:05:05Z",
    "event_type": "user_feedback",
    "label": "User Feedback (Thumbs)",
    "description": "User gave a thumbs-up on risk report",
    "attributes": {
      "feedback_type": "thumbs_up_down",
      "rating": "thumbs_up",
      "comment": "This was great!"
    }
  },
  {
    "timestamp": "2025-05-07T10:05:10Z",
    "event_type": "user_feedback",
    "label": "User Feedback (Stars)",
    "description": "User rated overall experience",
    "attributes": {
      "feedback_type": "stars",
      "rating": 5
    }
}

Examples of user feedback events are shown here as they appear in a session transcript:

Note that multiple feedback entries can be included for the same conversation, and feedback can be submitted at any point during or after the interaction.

PreviousConnecting Tool CallsNextConnecting other Events

Last updated 29 days ago