Add extra data to Slack notification

I’m using this API to add extra data to errors;

Raven.setDataCallback(function (data) {
  data.extra.sessionURL = LogRocket.sessionURL;
  return data;
});

Is there a way to include this data.extra.sessionURL in the Slack notification? Using the official Slack integration.

Thanks

1 Like

This is exactly what I am trying to do. Before I open an official ticket with #Sentry, is there a way to do this?

Thank you!