Nice walkthrough, not needed to use the bulk api endpoint till now ... very helpful. thanks
@adamfreelances4 ай бұрын
@@CoreAspect Thanks! Bubble has since made the “schedule API Workflow on a list” more performant, but this method is still useful for many use cases
@CoreAspect4 ай бұрын
any tips on bulk image upload?
@adamfreelances4 ай бұрын
@@CoreAspect if they are base64, you can post them in like you would a text field. If they are already hosted somewhere, you can post that URL in, and then run a bulk workflow on all the images to host that file on your bubble app. I have another video on my channel as to how to do that
@HandsomeThabethe3 ай бұрын
I don't know it it possible, but Is there a Way to Create X number of items based on Text input Number. Instead of Having to create 4 items or a Specific Number??? Like multiple items based on Text input value??)
@adamfreelances3 ай бұрын
You can use the schedule API workflow on a list for this. It’s a couple step process: 1. Use the calculate formula expression in bubble to generate a random string. You can specify the random string length using a dynamic value (which will be the text input number) 2. In the schedule API workflow on list action, specify the list as the random string. Then use the extract with regex expression (using just a dot “.” As the expression which will seperate each individual character). This will give you a dynamic list length easily within bubble