Custom Feedback Data


You can send custom data along with your feedback reports by adding it to the feedback_values javascript hash using the Javascript API.

Eg, if you wanted to include your authenticated user’s ID and name, you could use the following:

Saber.do('set_option', 'feedback_values', {
  user_id: 12345,
  name: "Matt Bearman"
});

You can include as much data as you like, and it can be any valid JavaScript data type.

Any data you pass in the feedback_values hash will be included in your notification, be it by email or third-party integration. It will also be visible when viewing reports in your Saber Feedback control panel.