Ok, dunce hat on
, I’m driving myself insane, so I need some help!! I have a Table with uploaded client images and location information. When clicked, it opens a new screen that shows the image, details and map info and a button that invokes a webhook and sends a payload to make.com. Simple, works well, and all is good. SO now I want to do exactly the same thing but with four images. And I’m Lost. I put a boolean “selected” on image click, have a small collection that shows the selected, but how in the heck can I get them to the webhook? I’ve really confused myself all day on this one, so any help would be greatly appreciated. Thanks Gliders ![]()
I’d create a small JSON object.
- Create a Query column that targets the table in question, and filters where the boolean is checked.
- Do a Lookup through that Query, that targets the Image column. This will give you an array of image URLs.
- Pass that into a JSON Object column. This will return a JSON Object containing a collection of image URLs
- Send the JSON Object through your Make webhook.
On the Make side, you’ll just need to add a JSON Parse module to extract the URLs.
The nice thing about this approach is you can send any number of images.
Ahhh , I’ve never used JSON in Glide, lots in Make, but that sounds like a plan. Thank you so much @Darren_Murphy
(post deleted by author)