I have a list of images that I am trying to go through and send each of them to an API call.
However, the API I’m using can only process one image at a time per call. But I need to send 10-20 images to this API, so this will be 10-20 API calls, each with a different image sent to it until all images in the list are sent.
I am wondering how can I go through this list of images to send to this API call multiple times until each image is sent to the API, and not send duplicates with the list of images.
I guess what he needs is different than me, cause I need to loop nested data, he only needs an image URL.
So what I guess what I meant is that I need to retrieve API data via the manual parameters, but Bubble does not allow it. They only allow it via the request data.
This isn’t working for what I need. I think I must be looking somewhere wrong?
I need all of this to happen instantly as soon as the user clicks a button element. The images needs to be gathered from a multi-file uploader on the same.
On the backend workflow page, I don’t see anywhere I can access the elements on my page to get these data points (the images from file uploader and button for event trigger).
Could I store images on Airtable? Is that what you mean?
Main reason I am using this API call that lets me only do one image at a time, is for storage purposes.
But could I essentially do the same thing on Airtable and send all images at once there for storage instead of one at a time using this method? That would solve this problem I think.
I cannot get data from an API connector action in the API endpoint on the server side.
I can get data from an API connector action in a custom event on the client side.
I can easily create a recursive workflow with nested API data on the client side because the API connector data is retrievable in the manual definitions.
However, creating a recursive workflow in the same way is not possible in the backend.