You can setup webhook to be called every-time you receive a new feedback.

  1. Go in the setting page
  2. Add your webhook url and save

Now every-time a new feedback is added to any of your project, you will receive a POST request with the following field in the body:

{
	id: string,
  text: string,
	createdAt: Date,
  type: 'BUG' | 'OTHER' | 'FEATURE',
	identifier: string
}