You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I know that it's possible to generate an issue creation link with pre-filled values using the https://{jira_url}/secure/CreateIssueDetails!init.jspa?pid={project_id}&issuetype={issuetype_id}}&... URL, but I have a user who would like to be able to specify multiple component values.
So far I'm able to create an issue with a single component without any problems:
https://{jira_url}/secure/CreateIssueDetails!init.jspa?pid=16900&issuetype=10001&components=16605&summary=Sample%20Set%20Component
I've tried
And pretty much every variation thereof using urlencoded/hex for the symbols and I just can't get it to work. Does anyone know if this is even possible?
Given this particular customer's use case I think we will go with a form that populates an API call eventually, but for now I'm looking for a quick win. Any help is greatly appreciated
You just need to add `components=` multiple times as query parameters. In your case that would look like:
https://{jira_url}/secure/CreateIssueDetails!init.jspa?pid=16900&issuetype=10001&components=16605&components=16900&summary=Sample%20Set%20Component
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.