HOW TO USE:
1. Add the plugin action "Export JSON to CSV" in your workflow.
2. Fill in the following fields:
- "jsonData": Enter a valid JSON array of objects as plain text.
- "filename": (Optional) Name of the file to be downloaded (default is "export.csv").
- "delimiter": (Optional) Character used to separate values (default is a comma ",").
3. Trigger the action β the CSV file will be automatically downloaded.
EXAMPLE INPUT FOR jsonData:
[
{ "name": "Alice", "age": 28, "email": "
[email protected]" },
{ "name": "Bob", "age": 34, "email": "
[email protected]" }
]
NOTES:
- Make sure `jsonData` is a plain text JSON string, not a Bubble list.
- If using dynamic expressions, use ":format as JSON-safe" to convert properly.