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
Is there any help here? I am interested :)
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.