Instructions
1. Add the Plugin Action
In Bubble’s workflow editor, add the CSV to JSON action from this plugin.
2. Configure the Input
The action requires a single input:
csv_file (file): Upload a CSV file using Bubble’s file uploader or pass a stored file URL.
3. Run the Action
The action will process the CSV file and return a JSON string.
4. Use the JSON Output
The output is stored in json_text.
You can use JSON.parse(json_text) in Bubble’s JavaScript (Toolbox) to convert it into a usable list.
The JSON format is:
json
[
{
"column1": "value1",
"column2": "value2",
"column3": "value3"
},
{
"column1": "value4",
"column2": "value5",
"column3": "value6"
}
]
5. Common Use Cases
Displaying structured data in a Repeating Group.
Storing parsed CSV data in Bubble’s database.
Sending JSON-formatted data to external APIs.