JSON to Dynamic
- 14 Mar 2024
- 1 Minute to read
- Print
- DarkLight
JSON to Dynamic
- Updated on 14 Mar 2024
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Step Details | |
Introduced in Version | 4.0.0 |
Last Modified in Version | 7.12.0 |
Location | Data > JSON |
The JSON to Dynamic step converts a string of JSON data into its respective dynamic object. The step accomplishes this by taking JSON via the JSON Input, which takes JSON in String format. The step outputs the data into its converted object and provides an additional path should the step encounter an error in conversion. The output will be something called an ExpandoObject, which is simply an object that can be dynamically changed during run time. This means that users can add, delete, and get values for aspects of the Instance.
Properties
Inputs
Property | Description | Data Type |
---|---|---|
JSON Input | JSON string to convert. | String |
Outputs
Property | Description | Data Type |
---|---|---|
Done | If the step is successful, the Flow will navigate down this outcome path. | ExpandoObject |
Error | If the step encounters an error, the Flow will navigate down this outcome path. | String |
Example
- Pick or create a Flow. Then, select the JSON to Dynamic step by navigating to DATA > JSON within the Toolbox.
- In the Properties panel for the JSON to Dynamic step, enter the JSON Input. Once that is complete, connect the Done and Error paths to the End step to complete the Flow.
Was this article helpful?