Hi Chiara,
while I did not find a way to export to CSV directly, the JIRA Cloud REST API provides a solution to export the domain of values for select fields as a JSON-File. You can find a similar question here.
If we provide the API with a Project Key and an Issue Type, we will get information on the existing fields, including all possible options for your cascading Select List.
Note that Field-Contexts do apply.
The template request URL looks like this:
https://YOUR_COMPANY.atlassian.net/rest/api/2/issue/createmeta?projectKeys=PROJECT_KEY&issuetypeNames=ISSUE_TYPE&expand=projects.issuetypes.fields
The response to your request will contain the required information as a list of allowed values with children.
Let's say you'd like to see all (field) meta information for the issue type Task in the DEV project of space-app, then your URL would look like this:
https://space-app.atlassian.net/rest/api/2/issue/createmeta?projectKeys=DEV&issuetypeNames=Task&expand=projects.issuetypes.fields
I hope this was helpful to you.
Greetings
Gideon
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.