Currently we can export forms as XLSX and PDF. Is there a way to download them in JSON format so I can edit and process them with more automatic way?
Hi @Zhenjun Hu
It seems xlsx is the only option to export:
https://developer.atlassian.com/cloud/forms/guides/export-forms/
You will have to find a plugin for that or parse your own JSON from the xlsx.
Here is a handy guide on how to do it for Jira issues. It might be worth checking to create your script:
Regards
Thanks @Aaron Pavez _ServiceRocket_
I've got another way to pull the form data as JSON by issue id using REST API:
/rest/api/2/issue/{issueIdOrKey}/properties/{propertyKey}
PropertyKey for forms are:
proforma.forms.i1 (i2, i3, i4 etc, depends on how many forms you got in the issue)
However the limitation is that I have to loop through every single issue instead of getting them in bulk.
Just want to check out if there is such function. Seems like it's not yet available in Jira though.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not in bulk. The only way it seems is as you mention. loop one by one.
Regards
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.