Apps documentation
Dynamic Forms for Jira
Dynamic Forms for Jira
Version 6.x
Version 5.x and older
FAQ
Release notes
Last updated Mar 27, 2023

Import and export

Learn how to import and export the Dynamic Forms configuration

You can import a configuration of Fields Visibility from a JSON file. This is helpful when importing configuration to another Jira instance.

Info

To import or export a Fields Visibility configuration, log in as a user with the Jira Administrators global permission.

Import configuration

The import option allows for adding a configuration saved in a JSON file. You can add the imported configuration to the existing one (no settings will be removed). It also allows you to remove an existing configuration and replace it with a new one imported from the file.

Note

The view generated after filling out the form is only a preview. You will be able to edit it. At the end, remember to publish the imported configuration (you can also discard it).

Steps

To import the configuration:

  1. Go to Jira Administration > Manage apps.

  2. Select Fields Visibility from the Dynamic Forms app navigation.

  3. In the left sidebar, click the three dots menu.

    Dynamic Forms for Jira - Import Dynamic Forms configuration
    Dynamic Forms for Jira - Import Dynamic Forms configuration

  4. Select Import configuration.
    The Choose import type dialog box appears.

  5. Select the Type of import:
    • Add the imported configuration to the existing one (no settings will be removed)
    • Remove the existing configuration and replace it with a new one
      Tip

      We strongly recommend creating a backup of your configuration by exporting it to a JSON file.

      Dynamic Forms for Jira - Import Dynamic Forms configuration
      Dynamic Forms for Jira - Import Dynamic Forms configuration
  6. Click Next.
    The Import settings dialog box appears.

  7. Select how you want to match custom fields, contexts, and options.
    If you import it from the same Jira instance as the target one, use the Match by ID option. If you have two different instances of Jira, it would be impossible to match custom fields from a JSON file by IDs. Each instance has different custom field’s numbering, so Jira can’t match them. The solution is to create Dynamic custom fields with the same names in second instance and import the Dynamic custom field’s configuration from the first Jira instance. Then, the system will match the Dynamic custom fields by their name and easily import the configuration. If your target Jira instance is different, use the Match by name option.

    Note
    • Remember that the custom field’s name must be the same.
    • A blank space counts as a separate character.
    • Jira fields, such as Priority or Components, are matched automatically by ID.

  8. Drag a JSON file with the configuration or click Browse and select the file.

  9. Click Go to preview.
    Check if the configuration is correct. You can add new related fields or modify existing ones.

    Dynamic Forms for Jira - Import Dynamic Forms configuration
    Dynamic Forms for Jira - Import Dynamic Forms configuration

  10. Click Publish to save the changes.

    Dynamic Forms for Jira - Import Dynamic Forms configuration
    Dynamic Forms for Jira - Import Dynamic Forms configuration

Result

Configuration is imported from JSON and saved on your Jira instance.

Export configuration

You can export your configuration of Fields Visibility to a JSON file. This is helpful when importing a configuration to another Jira instance or creating a backup.

Steps

To export the configuration:

  1. Go to Jira Administration > Manage apps.
  2. Select Fields Visibility from the Dynamic Forms app navigation.
  3. In the left sidebar, click the three dots menu.
  4. Select Export configuration.

Result

The configuration is exported to a JSON file that is saved on your computer.

Note

A file naming convention provides the following elements:

  • feature (Dynamic Forms - DF)
  • date (DD_MM_YYYY)
  • time (HH_MM)

For example: DF_30_07_2018_15_02.json

Automated export with a script

The app provides two methods to export a Fields Visibility configuration to a JSON file automatically:

  • exportAsJsonString - that returns the JSON as a string
  • exportToJsonFile - that saves the JSON as a file

You can use following scripts while using ScriptRunner or any other similar app:

Export JSON as a string

import com.onresolve.scriptrunner.runner.customisers.PluginModule
import com.onresolve.scriptrunner.runner.customisers.WithPlugin
import com.intenso.jira.plugin.dynamicforms.api.export.ExportConfigurationService
import org.codehaus.jackson.map.ObjectMapper;

@WithPlugin("com.intenso.jira.plugin.dynamic-forms")
@PluginModule
ExportConfigurationService exportService;
exportService.exportAsJsonString();

Export JSON as a file

import com.onresolve.scriptrunner.runner.customisers.PluginModule
import com.onresolve.scriptrunner.runner.customisers.WithPlugin
import com.intenso.jira.plugin.dynamicforms.api.export.ExportConfigurationService
import org.codehaus.jackson.map.ObjectMapper;

@WithPlugin("com.intenso.jira.plugin.dynamic-forms")
@PluginModule
ExportConfigurationService exportService;
exportService.exportToJsonFile("/var/atlassian/application-data/jira/tmp/df-export.json");
Need help?

If you can’t find the answer you need in our documentation, raise a support request.