Overview
This node, named "Ocade Fusion," primarily serves as a wrapper or delegator to perform a JSON stringify operation on input data. It converts an object into its JSON string representation. This is useful when you need to serialize data for storage, transmission, or logging purposes within an n8n workflow.
A practical example would be preparing complex data structures to be sent as JSON payloads in HTTP requests or saving them as strings in databases.
Properties
Name | Meaning |
---|---|
Action | The operation to perform. Only option: "Stringify" - Convert an object into a JSON string |
Output
The output of this node is the result of the JSON stringify operation. It produces a JSON string version of the input object under the standard json
output field. There is no binary data output.
Dependencies
- This node depends on an internal "Stringify" node implementation that performs the actual conversion.
- No external API keys or services are required.
- No special environment variables or n8n configurations are necessary.
Troubleshooting
- Unsupported Action Error: If an action other than "stringify" is selected (which currently is not supported), the node throws an error indicating the action is unsupported. To resolve, ensure only the "Stringify" action is chosen.
- Invalid Input Data: If the input data contains circular references or non-serializable values, the stringify operation may fail. Ensure input objects are serializable to JSON.