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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I need to find out the id of a specifc field on JIRA 7
If youre looking for manual way to look it up rather than a programatic way...
Fastest way i've found is to just start typing it in the advanced issue search. When the autocomplete popup displays, it will list the field appended with "- [cf#####] the #### part is the field ID.
@Randy You've found the easiest process - just to outline it in 2020 on Jira Server:
1. go to Issues > Search,
I'm on Jira Server 8.5
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can not see this on Jira Cloud as of today, seems like the ID's no longer show up. They did before. Any ideas? (These are custom fields)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Simen Eriksen Oh no! I see that too and it's too bad because it was so convenient to use as a lookup.
Alternate route to get to it is now:
Please share if you've found a faster way to locate.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are an admin, you can go Administration > Custom Field and hover over the Edit operation to find the id of the field in the url. Or right click and open the Edit url to open it in a new tab. That way you can see the field id in the browser.
You can also get the id from Database if you have access to the DB tables.
If none of that is an option, use the JIRA REST API to retrieve the fields available for a given project and issue type like this:
URL/rest/api/2/issue/createmeta?projectKeys=KEY&issuetypeNames=Task&expand=projects.issuetypes.fields
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have "Jira Cloud for Sheets" add-on w/ Google Sheets, you can search issue fields which will show the customID. In case you have many similarly names fields, you may want to search a specific project key and select all possible fields and see which returns the result you are searching for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the info!
The inconvenience with this is that we don't know which template they belong to.
Especially if you have multiple fields with similar (or same names), it's a little hunt to verify the ID's
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.