When your team relies on forms to collect feedback, request changes, or manage approvals in Jira, one of the most common questions is: "How can I automatically send someone a form at the right time in the workflow?"
Good news — with Smart Forms for Jira, every form gets its own shareable URL that works seamlessly with Jira Automation. That means you can send form links when an issue changes status, a comment is added, or any other trigger occurs.
Jira forms workflow automation helps teams:
This is where auto-shared form URLs shine - and Smart Forms makes it ridiculously simple.
You've been there: ticket gets resolved, customer is happy, but getting feedback feels like pulling teeth. You send a generic "how did we do?" email three days later, and... crickets.
Smart Forms Solution:
Why This Works: The automated form sharing provides immediate context while the resolution is fresh in the customer's mind.
Your developer finishes a feature and moves it to "Ready for QA." Usually, this means hunting down the QA person, explaining what changed, hoping they remember to test the right things.
With automation:
You need a security assessment from a new vendor. Normally, this means finding the right form, writing a professional email, explaining your process, hoping they fill it out correctly.
Automated version:
Traditional Process: Manually finding security assessment forms, writing professional emails, hoping vendors complete them correctly.
Jira Form Automation:
Form Creation Process:
Every Smart Form attached to a Jira issue automatically generates a unique URL accessible through Jira automation smart values:
{{issue.properties."saasjet.forms.formsSharedUrls"}}
Important: This smart value provides access to ALL forms on an issue. Use filtering to target specific forms.
Method 1: Filter by Form Name
{{#issue.properties."saasjet.forms.formsSharedUrls"}}
{{#if(equals(formName, "Customer Feedback"))}}{{url}}{{/}}
{{/}}
Method 2: Filter by Form ID (Most Reliable)
{{#issue.properties."saasjet.forms.formsSharedUrls"}}
{{#if(formId.equals("feedback-form-v2"))}}{{url}}{{/}}
{{/}}
Method 3: Filter by Form Position
{{#issue.properties."saasjet.forms.formsSharedUrls"}}
{{#if(formNumber.equals("1"))}}{{url}}{{/}}
{{/}}
Basic Customer Feedback Automation:
Rule Name: "Automated Customer Feedback Collection"
Trigger: Issue transitioned to "Resolved"
Condition: Issue Type = "Customer Support"
Action: Send email
Email Template for Jira Form Automation:
Subject: Quick feedback on your recent support case
Hi {{issue.reporter.displayName}},
We've resolved your issue: {{issue.summary}}
Help us improve by sharing quick feedback:
{{#issue.properties."saasjet.forms.formsSharedUrls"}}
{{#if(equals(formName, "Customer Feedback"))}}{{url}}{{/}}
{{/}}
This form takes less than a minute to complete.
Thanks,
The Support Team
Scenario: When development completes, multiple teams need different information simultaneously.
Trigger: Issue transitioned to "Ready for Release"
Actions:
1. Send deployment checklist to DevOps team
2. Send testing verification form to QA team
3. Send documentation form to Technical Writers
4. Send release notes form to Product Managers
The hardest part isn't the technical setup (that's actually pretty easy). The hardest part is picking which manual process to automate first.
Here's a tip: start with the one that happens most frequently or causes the most frustration when it gets forgotten.
Your future self will thank you when forms start sending themselves exactly when they should, to exactly the right people, with exactly the right context.
Ready to stop playing form coordinator? Try Smart Forms for Jira and watch your workflows start managing themselves.
Olha Yevdokymova_SaaSJet
Product Marketing Manager
SaaSJet
Ukraine
15 accepted answers
0 comments