JSON Action Block
The JSON Action Block provides simple conversion between JSON objects and text strings.
No authentication required. Uses native JSON parsing and stringification.
Supported Actions
Text to JSON
Parses a text string into a JSON object or array.
Configuration:
- Text: The JSON-formatted text to parse (supports
{{variables}})
Example:
Input: '{"name": "John", "age": 30}'
Output: { name: "John", age: 30 }JSON to Text
Converts a JSON object or array into a text string.
Configuration:
- JSON: The JSON data to stringify (supports
{{variables}})
Example:
Input: { name: "John", age: 30 }
Output: '{"name":"John","age":30}'Use Cases
- Parsing API response bodies that arrive as text
- Preparing JSON payloads for HTTP requests
- Converting between structured and string data in workflows
- Processing webhook payloads