Hi,
I am trying to create a link so that users can create an issue from our intranet that directly opens a ticket in Jira.
Can someone please point me in the right direction to a guide.
All the best tony
If you still need this you can use this format for the link -
my.jira.com/secure/CreateIssue.jspa?issuetype=1&pid=10000
You need to use your own issueType id and project id.
I had a hard time finding the project ID in Cloud so if you need that -
this worked for me -- thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In JIRA Cloud, I had a difficult time with the steps above but here is what worked for me:
Here is the URL I used, for instance:
my-tennant.atlassian.net/secure/CreateIssue.jspa?issuetype=10006&pid=10000
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome! It worked perfectly for Jira Cloud Thanks Craig!
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.
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.
Did you achieve the
https://????.atlassian.net/secure/CreateIssue.jspa?issuetype=???&pid=???
URL using the new layout issue creating screen?
It is always opening the old layout style
even "normal" "Create" Popup looks like this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't see the difference, unless you mean that clicking the Create button shows a modal (popup) window in the browser?
Hi @ultra urgent I see what you mean now.
I had created my URL from Jennifer's (above, 2019-02-22). I see that the Create button does a POST and its URL path looks quite different:
The GET:
/secure/CreateIssue.jspa?issuetype=???&pid=???
The POST:
/rest/gira/1/?operation=JiraGlobalIssueCreateModalLoad
Does anyone know how to use a GET to get the new UI experience that @ultra urgent pointed out?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you have any luck with resolving this problem?
One thing that old UI is missing is the option to upload images in text fields. This option is present when new issue is created via Create button. I have no issues that the GET link opens old UI, but it should at the bare minimum offer the same functionalities.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @[deleted] nothing since I wrote that call-out in May.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I followed the steps from Craig, except that in order to find ProjectID I hovered over:
- ToolChain within the Project settings menu
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was able to find the ProjectID by going to the REST API for projects: https://<my-tennant>.atlassian.net/rest/api/3/project/search
There you can search for the key and see the associated ProjectID.
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.
I don't have admin permissions on our Jira. I couldn't go to administration section. I was able to retrieve project ID from the drop-down menu.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This really helped! Thanks @rluks ! :D
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This helped me too.
If you're also looking for issuetype, the field to search for is called "issuetype-options"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
wow, thats jira ux :D (thanks for you tip, was very helpful!)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can also get it by going to following url https://jira_url/rest/navigation/4/sidebar?projectIdOrKey=PROJECT_KEY You need to replace PROJECT_KEY and jira_url in that url
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't have administrator rights so couldn't get to configuration section. This is the url you can use to get Project ID --> https://jira_url/rest/navigation/4/sidebar?projectIdOrKey=PROJECT_KEY
You need to replace PROJECT_KEY and jira_url
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, I am trying to set up a custom ticket creation with a link.
Is there a way of filling in the custom tempo field for accounts? customfield_10401: Account is required.
How can I submit the type of account? It does not work :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This blog post has a comprehensive solution to create ticket with details via link: https://community.atlassian.com/t5/Jira-Software-questions/Help-creating-a-link-to-create-a-new-issue-in-Jira/qaq-p/806678
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.
Kindly have a look at the Issue collectors. It is a built in feature. It lets you create links for creating tickets in Jira from external resources.
https://confluence.atlassian.com/adminjiraserver071/using-the-issue-collector-802592637.html
Or you can draw your own form and use Jira Rest Api to create tickets. Here is a refrence to Jira Rest Api.
https://developer.atlassian.com/server/jira/platform/rest-apis/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alexey,
The issue that the issue collector runs a little button that then in turn links to the page, the rest API's are surely a little overkill, as the Jira create ticket form is fine. I would just like to have a link in a corporate styled button to link to the create a ticket.
I thought this would be a simple task, however it seems that we have to make a custom form to then link and submit to Jira. Have I got that wrong?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Out of the box you can use issue collectors. If it does not suit your requirements, you can develop your own application and use Jira Rest Api to make changes in Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This does not appear to be a feature on team-managed projects. Only company-managed projects seem to provide this as an option in the project settings.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira has rest API's. Using which you can create issue in Jira from your applications. Below link might be helpful for you
https://developer.atlassian.com/server/jira/platform/creating-remote-issue-links/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Tony
https://marketplace.atlassian.com/apps/6398/jira-command-line-interface-cli?hosting=server&tab=overview
Use the Jira Command Line Interface in a script run on a scheduled basis.
With the CLI you can do something like this example from it's docs:
jira --action createIssue --project "servicedesk" --type "bug" --summary "userflow" --field "custom-multi-select" --values "a,b,c"
Best!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tony,
Create an issue from your intranet mean from where you want to create it?
Is this is your own hosted website or what?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tony,
Then use the Issue Collector functionality. It will generate the Javascript and Html code then just copy the code and paste it into your own hosted website page.
For more information about issue collector please visit the below link
https://confluence.atlassian.com/adminjiraserver071/using-the-issue-collector-802592637.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Yogesh,
The issue is that I get this button, I am looking just to provide the link.
How do I add the link generated from this JS button to a customer graphic?
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.