We currently use Jira Align, and we struggle to adopt its ideation functionality due to its primitive nature, lack of flexibility and functionality. Product discovery seems to address some of these challenges. However, as it only integrates with Jira Software, and Product Managers in our org mostly work off Jira Align, it does not seem to be a good fit for us.
Anyone aware of plans to expand Product Discovery (and potentially replace the ideation module within Align) and integrate it with Align? It seems strange for Atlassian to have the same competition functionality in different products.
The other workaround I use for this is via the Jira Cloud for Sheets add-on for Google Sheets. Once you have it set up and launch it within a sheet, within the side panel for the Add-On there's an option to view all Jira Fields:
You can then search for specific fields across all projects, or within a specific project:
This one seems particularly simple. Thank you! Let me try it out
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
please note that there is a bug in both Jira Cloud for Sheets where if you're using the same field name in multiple team managed projects, the customfield_257717 shown in the Jira Cloud For Sheets add-on will not necessarily be the actual correct customfield_identifier that matches the project you've already specified to pull issues from. There is no way to know within this add-on if you're looking at the identifier for the same project or not unless you happen to also know the customfield_id for that project. If you happen to know the customfield_id beforehand you can explicitly add the correct one by searching and you will see that it shows multiple in the list and you can select the correct one; I can reproduce this bug reliably in my projects 100% of the time.
But the functionality where it is attempting to pull the customfield for the correct project you're working in is explicitly broken. Therefore this method is not reliable for locating the custom field i.d. unfortunately in these circumstances.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
EDIT on 22/04/2026
There's now an easier way to do this:
(1) Go to: https://<your_domain>.atlassian.net/jira/settings/issues/fields?sidebarId=COLUMNS
(2) Make sure you switch on visibility for the "Field ID" field.
(3) Now this table shows all customfield_id(s) for all custom fields on your instance.
===
Hi @Rob Parrish
If you follow these steps, you'll be able to find the ID of your custom field you are looking for:
(1) Call the Atlassian API in your browser: <your_domain>.atlassian.net/rest/api/3/issue/<ISSUE_KEY>?expand=names
Enter any issue key from your JPD project such that we can retrieve all fields in an issue in the project.
(2) It will return a massive JSON object. Copy this to any JSON editor of your preference, for example https://jsoneditoronline.org/ and format it accordingly/
(3) Query (CTRL-F) with the name of the custom field that you want to find. For example, the result that you should use in your smart value automation step should look like this: {{customfield_10131}}
It's a bit of a work-around, but it does the job. Good luck!
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.
Hi @Rob Parrish
Yes, and...to this suggestion:
This approach will also show the structure of the smart values within the issue. This can help diagnose problems where values appear empty, but in reality the wrong smart value path was selected in the rule.
Kind regards,
Bill
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.
This doc should help:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Nick Haller
Here is the Jira Cloud version of that article...which was removed recently for several weeks, and now is back.
https://support.atlassian.com/cloud-automation/docs/find-the-smart-value-for-a-field/
Kind regards,
Bill
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 hover over the actual field label within an issue in the project, then right click and hit inspect. It will show take you to the source on an <h2> line that itself is wrapped within a <div> element that is usually just one or two lines above it. That div itself shows the customfield_identifier within it. Personally I find this to be the easiest and most reliable method because with team-managed projects the API lookup has become "spoiled" with redundant identifiers if you might use the same actual string name for custom fields in multiple projects. (And the Jira Cloud sheets export method has a pretty big bug in it where it's not reliable/accurate)
<div data-testid="issue-field-heading-styled-field-heading.customfield_11917" ...
<h2 ....[where you highlighted to inspect] ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Consider using this rest API
{
"id": "customfield_10101",
"key": "customfield_10101",
"name": "Votes",
"untranslatedName": "Votes",
"custom": true,
"orderable": true,
"navigable": true,
"searchable": true,
"clauseNames": [
"cf[10101]"
],
"scope": {
"type": "PROJECT",
"project": {
"id": "10001"
}
},
"schema": {
"type": "number",
"custom": "jira.polaris:votes",
"customId": 10101
}
},
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.