This family groups a set of actions related to JSON (JavaScript Object Notation) a lightweight data-interchange format.
Create JSON object
Creates a JSON object. This is especially useful to reuse its content in more actions of the flow.
Input settings
Parameter |
Description |
ID (required) |
Action ID. It is used to reference the output values of the action. |
Alias |
Short description to be displayed in the action. |
Body |
The JSON object. |
Output object
Property |
Type |
Description |
result |
Object |
The JSON object. |
Output object example
{
"result": {
"name": "John Doe"
}
}
Parse JSON
Parses a JSON object contained in a text string into a JSON object.
Input settings
Parameter |
Description |
ID (required) |
Action ID. It is used to reference the output values of the action. |
Alias |
Short description to be displayed in the action. |
JSON string (required) |
The JSON string. |
Output object
Property |
Type |
Description |
object |
Object |
The parsed JSON object.
|
Output object example
{
"object": {
"name": "John Doe"
}
}
Convert JSON to string
Converts a JSON object to a string.
Input settings
Parameter |
Description |
ID (required) |
Action ID. It is used to reference the output values of the action. |
Alias |
Short description to be displayed in the action. |
JSON object (required) |
The JSON object that will be serialized to a string.
|
Output object
Property |
Type |
Description |
json |
String |
The serialized JSON object. |
Output object example
{
"json": "{\"name\":\"John Doe\"}"
}