JSON
This list of JSON actions allows you to create, parse, and convert JSON to strings.
Create JSON object
Creates a JSON object. This is especially useful to reuse its content in other actions of the flow.
![](http://images.ctfassets.net/cdy7uua7fh8z/1zJEENRPI2uONuCApPY98p/f1fce88a42fb13fb9856c95c562bd506/createjsonobject.png)
Input settings
Parameter | Description |
---|---|
Body | The JSON object. |
Output object
Property | Type | Description |
---|---|---|
result |
Object | The JSON object. |
Output object example
{
"result": {
"name": "John Doe"
}
}
Was this helpful?
/
Parse JSON
Parses a JSON object contained in a text string into a JSON object.
![](http://images.ctfassets.net/cdy7uua7fh8z/5HjIGbBiWik1XozAZczxg5/fe2b0c6f7c657c4209921f1a0978e54b/parsejson.png)
Input settings
Parameter | Description |
---|---|
JSON string (required) | The JSON string. |
Output object
Property | Type | Description |
---|---|---|
object |
Object | The parsed JSON object. |
Output object example
{
"object": {
"name": "John Doe"
}
}
Was this helpful?
/
Convert JSON to string
Converts a JSON object to a string.
![](http://images.ctfassets.net/cdy7uua7fh8z/45acWYMlTGc5ZWMzK5Cqqr/6974ea640a76d2d9cc5814225e52734a/convertjsontostring.png)
Input settings
Parameter | Description |
---|---|
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\"}"
}
Was this helpful?
/