AllowExport – System Parameter
The AllowExport system parameter controls whether Nodinite enables the built-in export feature for configuration data in the Web Client.
What you need to know about this parameter:
- Nodinite version 7 and later disables this feature
- You must implement custom import/export using the Web API
- Constant platform development makes the built-in feature hard to maintain
Important
Nodinite version 7 and later does not operate the built-in Import / Export feature. We made this decision to ensure platform stability as we continuously add new features.
Nodinite originally designed the AllowExport system parameter to control whether administrators could export configuration data such as Integrations, Applications, and other Repository Model entities from the Web Client.
| System Parameter Name | Data Type | Values/Example | Comment |
|---|---|---|---|
| AllowExport | boolean | true/false |
Default = true. Nodinite 7+ disables the feature regardless of this value. |
Note
While the parameter exists in the database with a default value of
true, Nodinite does not operate the feature in current versions.
Frequently Asked Questions
Find more solutions and answers in the Nodinite System Parameters FAQ, as well as the Troubleshooting user guide.
Why did we disable this feature?
Nodinite constantly evolves with new features, enhancements, and capabilities. Maintaining the built-in Import / Export feature to support all possible configuration scenarios became increasingly complex and difficult to sustain. To ensure platform stability and focus development resources on core integration capabilities, we disabled this feature in version 7.
How do I export or import configuration data?
If you need to export or import configuration data between Nodinite instances, implement your own solution using the Nodinite Web API. The Web API provides comprehensive access to all Nodinite entities and supports full CRUD (Create, Read, Update, Delete) operations.
For example, you can:
- Use the Web API to retrieve configuration data in JSON format
- Transform and store the data as needed
- Use the Web API to create or update entities in the target instance
How do I change the value?
While you can change this parameter value in the Web Client Administration | Settings | System Parameters page (see 'How do I change the System Parameters'), it will have no effect in Nodinite version 7 and later as the feature is not operational.
Do I need to restart anything?
No. Since the feature is not operational, changing this parameter has no effect and requires no service restarts.
Will you re-enable this feature in the future?
We currently have no plans to re-enable the built-in Import / Export feature. The recommended approach uses the Web API to build custom import/export solutions tailored to your specific requirements.
Next Step
Web API
Import / Export (Legacy documentation)
Repository Model