Retrieve details of all custom fields in Jira Align using Enterprise Insights
Summary
This article describes the way to fetch all the Custom fields created in the Jira Align application via Enterprise Insights(EI), regardless of the WorkItem they are associated with.
Diagnosis
Running the below query should list down all the Custom fields in Jira Align:
SELECT TOP 1000 [Custom Field List].[Custom Field Name] AS [Custom Field Name]
FROM [current_dw].[Custom Field List] AS [Custom Field List]
GROUP BY [Custom Field List].[Custom Field Name]
ORDER BY [Custom Field Name] ASC;However, it does not list all the Custom fields that are created in Jira Align.
Cause
The view [Custom Field List] only makes available custom fields that are of the type "Multi Select", and also, only ones that are in use.
The customer fields that are not "Multi Select" type will still not show in EI output if it is not is use.
Solution
Currently, there is no workaround to fetch the list of all the Custom Fields from Jira Align via EI. However, a Suggestion is created to report the same
Updated on September 26, 2025
Was this helpful?
Still need help?
The Atlassian Community is here for you.