I would like to construct a URL that if clicked lands me on:
I know how to pre-select the Project ID (selectedProjectId=10603):
http://jira.example.com/secure/CreateIssue!default.jspa?selectedProjectId=10603
what parameter should I use to pre-select the issueType ID along with PID?
the correct URL for the above screenshot:
http://jira.example.com/secure/CreateIssue!default.jspa?selectedProjectId=10603&issuetype=3
I am aware of https://confluence.atlassian.com/display/JIRA/Creating+Issues+via+direct+HTML+links - but this assumes I know about reporter/summary - and throws error msgs if used with just pid and issueType.http://jira.example.com/secure/CreateIssueDetails!init.jspa?pid=10603&issuetype=15
You can look on the project page. On the summary page there are buttons for the first issue types with the correct links for it. E.g. you have to use http://jira.example.com/secure/CreateIssue.jspa?pid=10150&issuetype=40.
Henning
oh, right... thanks! - how could I forget that?
this works, although I am still curious if there is a way to preselect both PID and IssueType for the view in my screenshot
If found something even better :-) You can use this
<div id="create-issue"> <a href="/secure/CreateIssue.jspa?pid=10603&amp;issuetype=15" class="create-issue-type" data-pid="10603" data-issue-type="15">create issue</a> </div>
to open a popup Create Issue screen if your JIRA version supports this. The data-... parameter must match the ids of the link (in fact, the link isn't even used if the popup could be opened).
Because of the needed surrounding element with id "create-issue" there will be some CSS formating applied to the link, which maybe you want to manually remove by applying some style parameter.
Ok, this is not a simple URL.... I use this to display a "support" link on every page through the announcment banner and want to share it :-)
Hi Hennings,
How will we get the defect id that is created? or How the parent page will get the Defect id that is created using direct html Link?
Hi Gopi,
I'm sorry but I don't know how to get the issue key of the created issue. Maybe you should ask this as a separate question.
That does the trick! There is some way of getting the just created issue's id?
Hi, is there a way of not getting the huge ERROR sign saying: "You are not logged in, and do not have the permissions required to create an issue in this project as a guest. To create an issue first log in" That is quite annoying for a user that has never used JIRA before. Does not look very professional. I would like to get to the login screen immediately.
Had to replace selectedProjectId= with pid= in JIRA 6.4.9
http://jira.<a href="http://example.com" rel="nofollow noopener noreferrer">example.com</a>/secure/<span>CreateIssue.jspa</span>?pid=10603&issuetype=3
http:
//jira
.<a href="http://example.com" rel="nofollow noopener noreferrer">example.com</a>
/secure/<span>CreateIssue.jspa</span>
?pid=10603&issuetype=3
Recently, I've found another way to open the create issue/subtask dialog. Here it is:
// Create Subtask JIRA.Forms .createSubtaskForm({parentIssueId: 10110}) .asDialog({windowTitle: 'Create Subtask'}) .show(); // Create Issue JIRA.Forms .createCreateIssueForm({pid: 10000}) .asDialog({windowTitle: 'Create Issue'}) .show();
Now I don't have to create hidden links to open them anymore.
Yes, you need to login to JIRA before you access the create links or you can login directly from the create link. This is because JIRA needs to authorise that you are JIRA user before you can create a JIRA issue.
I can not create the link without issuetype
{quote}
https://ptticket.global.schindler.com/secure/CreateIssueDetails!init.jspa?pid=11101&issuetype=10607&priority=3
works, but
https://ptticket.global.schindler.com/secure/CreateIssueDetails!init.jspa?pid=11101&priority=3
does not work. I can not choose an issue type, it will say "No issue type selected".
So you have to have a minimum and can not combine as you like.Same/similar btw for priority. If I remove that part it chooses Critical, which, for this project, is not available.
It looks like you're new here. Sign in or register to get started.