# Sending Multi Images via Webhook with Conditions

**URL:** https://community.glideapps.com/t/sending-multi-images-via-webhook-with-conditions/87649
**Category:** Ask for Help
**Created:** [September 2, 2026, 9:01am UTC](https://community.glideapps.com/t/sending-multi-images-via-webhook-with-conditions/87649 "2026-09-02T09:01:05Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Laurence\_Schuberth](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/laurence_schuberth/32/65729_2.png) [@Laurence\_Schuberth](https://community.glideapps.com/u/Laurence_Schuberth)
#### Post date: [September 2, 2026, 9:01am UTC](https://community.glideapps.com/t/sending-multi-images-via-webhook-with-conditions/87649/1 "2026-09-02T09:01:05Z")

</div>

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](http://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 🙂

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [September 2, 2026, 9:24am UTC](https://community.glideapps.com/t/sending-multi-images-via-webhook-with-conditions/87649/2 "2026-09-02T09:24:16Z")

</div>

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.

---

<div class="post-metadata">

### Author: ![Laurence\_Schuberth](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/laurence_schuberth/32/65729_2.png) [@Laurence\_Schuberth](https://community.glideapps.com/u/Laurence_Schuberth)
#### Post date: [September 2, 2026, 9:28am UTC](https://community.glideapps.com/t/sending-multi-images-via-webhook-with-conditions/87649/3 "2026-09-02T09:28:50Z")

</div>

Ahhh , I’ve never used JSON in Glide, lots in Make, but that sounds like a plan. Thank you so much @Darren_Murphy
