Adding a Setting to a Workflow
Author:
Esma Tuzovic
Changed on:
5 Sept 2024
Key Points
- It’s possible to add settings to a workflow via Json in order to improve the performance and the functionality of the workflow.
Steps
Adding a Setting to a Workflow
Pre-defined settings can be added to a to change and improve default behavior. Settings are added to the object as key-value pairs. You can see an example of Settings in context in the create an empty workflow guide.
Adding a Ruleset via JSON
Workflow Settings schema
JSON Key | Value Type | Mandatory | Description |
settings | Object | NO | An object of key-value pairs that can enhance the performance and functionality of your . See available settings here. |
Workflow Settings sample
1{
2 "settings": {
3 "{{settingName}}": "{{settingValue}}"
4 }
5}