How to find id of an issue type for a non-admin user.
I know it can be done with admin rights, but is it possible through non-admin rights using some REST clients or something similar?
Thanks,
using /rest/api/2/issue/createmeta REST api you can get issue Type ID
check this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tarun,
You can view create issue screen that will load all issue types. Direct URL should be like this:
<your JIRA instance>/secure/CreateIssue!default.jspa
then just view HTML source of the page using your browser and you will have all informations in below form:
<option class="11611" id="issuetype116113" data-icon="/jira/images/icons/issuetypes/task.png" value="3"> Task </option>
where value is the issue type ID.
I hope that will help.
Best Regards,
Mirek
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To update...
now you need to view page source and search for "","value":""
Each place you see the string “","value":"” you will see the name of the issue type displayed immediately before.
Immediately after that string is the numerical value of the issuetype that you will need to for things like Cloud Email Handler – Handler params etc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.