Collecting feedback sounds simple until you try to operationalize it.
Atlassian ships the Jira Issue Collector as the default way to capture feedback from outside Jira. It works, but it assumes every piece of feedback should immediately become work.
For most product teams, that is the problem.
Released Feedback Forms take a different approach. Feedback is captured first, triaged second, and only turned into Jira work when it actually deserves to be.
The Jira Issue Collector embeds a form into a webpage and creates a Jira issue for every submission.
Setup is straightforward:
⠀ Example embed:
<script type="text/javascript" src="https://your-domain.atlassian.net/s/collector/xxxxxxxx.js?collectorId=YYYYYYYY"></script>
Once installed, submissions go directly into Jira.
The Issue Collector was designed for ticket intake, not product discovery.
That leads to a few common problems:
You get volume, but not signal.
Released Forms introduce a missing layer between users and Jira: triage.
Feedback lands in Released first. Teams can review, respond, group related requests, and link feedback to Jira only when it becomes actionable.
Jira stays focused on delivery. Feedback stays structured and searchable.
Setup is intentionally minimal.
Create a form in Released and copy the Form ID.
Add this to your :
<script src="https://embed.released.so/1/embed.js" defer></script>
Place the form component anywhere in your page:
<released-form form-id="FORM_ID"></released-form>
Replace FORM_ID with your actual form ID.
If your users are already authenticated, you can verify their identity server side and pass an auth-token.
<released-form form-id="FORM_ID" auth-token="AUTH_TOKEN"></released-form>
This removes anonymous submissions and automatically attaches feedback to known users.
Most teams do not want a permanent floating widget. They want feedback entry points exactly where users feel friction.
Released Forms can be opened programmatically.
// Open the feedback form
window.Released.show('form', 'FORM_ID');
// Close the feedback form
window.Released.close('form', 'FORM_ID');
Example:
<button onclick="window.Released.show('form', 'FORM_ID')">
Give Feedback
</button>
This makes it easy to trigger feedback from:
Feedback appears when it is relevant, not everywhere.
See the documentation for more detail.
| Feature | Jira Issue Collector | Released Feedback Form |
|---|---|---|
| Jira issue creation | Automatic | Optional |
| Authentication | None | Supported via auth token or sign-in. |
| Project restrictions | Company-managed only | Works with all Jira projects |
| Triage layer | None | Central feedback inbox |
| Linking feedback to work | Via issue links | Via feedback linking |
Teams usually end up in one of two places:
Neither works well.
Product teams need something in between. Lightweight for users. Structured for teams.
Released Feedback Forms help teams capture feedback without turning Jira into a suggestion box. You keep the signal, drop the noise, and create work only when it is justified.
See the feedback form in action in this demo: https://embed-demo.released.so
And if you haven't already, try out Released and up-level your customer and stakeholder communication
Jens Schumacher - Released_so
0 comments