Can anyone provide information on how to use CURL on a Bubble endpoint to do a bulk create? I’m just looking for the commands, in the event I have a text file.
Say the enpoint looks like this:
POST https://myapp.bubbleapps.io/api/1.1/obj/mytype/bulk
And say my text file might look something like this (upload.txt):
{“food”: fruit, “type”: banana}
{“food”: fruit, “type”: apple}
{“food”: vegetable, “type”: carrot}
The CURL command would presumably reference the text file in the same directory where it is executed.