# Is it possible to send multiple rows of Json data through Trigger Webhook?

**URL:** https://community.glideapps.com/t/is-it-possible-to-send-multiple-rows-of-json-data-through-trigger-webhook/73284
**Category:** Ask for Help
**Created:** [May 12, 2024, 7:33am UTC](https://community.glideapps.com/t/is-it-possible-to-send-multiple-rows-of-json-data-through-trigger-webhook/73284 "2024-05-12T07:33:17Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![sang73](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/sang73/32/74638_2.png) [@sang73](https://community.glideapps.com/u/sang73)
#### Post date: [May 12, 2024, 7:33am UTC](https://community.glideapps.com/t/is-it-possible-to-send-multiple-rows-of-json-data-through-trigger-webhook/73284/1 "2024-05-12T07:33:17Z")

</div>

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/3/d/3d23730c41bd2638584e0df8acbcc3aff66a8bc0.png)

Looking at the settings window of the request body item, there is no separate setting for sending data from a few rows or rows that meet certain conditions, but is it just sending data from the most recent generated rows?

If so, is there any way to transfer 10 rows to Json data at once in the latest generated order?

---

<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: [May 12, 2024, 8:11am UTC](https://community.glideapps.com/t/is-it-possible-to-send-multiple-rows-of-json-data-through-trigger-webhook/73284/2 "2024-05-12T08:11:34Z")

</div>

Yes. Do it like this:

- Use a JSON Object or JSON Template column to generate the JSON for each row
- Create a Query or Multiple Relation column to match the rows that you are interested in.
- Use a Lookup column to fetch the JSON from each row via the query/multiple relation
- Use another JSON Object/JSON Template column (if necessary) to construct the final JSON payload
- Send that via your webhook.

---

<div class="post-metadata">

### Author: ![sang73](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/sang73/32/74638_2.png) [@sang73](https://community.glideapps.com/u/sang73)
#### Post date: [May 12, 2024, 9:32am UTC](https://community.glideapps.com/t/is-it-possible-to-send-multiple-rows-of-json-data-through-trigger-webhook/73284/3 "2024-05-12T09:32:36Z")

</div>

Thank you for your answer, sir.

We succeeded in collecting and transmitting all the data.

However, since it is delivered to Zapier through the web hook, all the data is combined and cannot be distinguished.

What did I set wrong?

---

<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: [May 12, 2024, 9:46am UTC](https://community.glideapps.com/t/is-it-possible-to-send-multiple-rows-of-json-data-through-trigger-webhook/73284/4 "2024-05-12T09:46:16Z")

</div>

Sorry, I’m not familiar with Zapier, so I can’t advise on that.  
Essentially you will need to parse the incoming JSON and process it as a collection. I would assume that Zapier has methods for doing that. Somebody who is familiar with Zapier may be able to give more specific guidance.

---

<div class="post-metadata">

### Author: ![sang73](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/sang73/32/74638_2.png) [@sang73](https://community.glideapps.com/u/sang73)
#### Post date: [May 12, 2024, 11:58am UTC](https://community.glideapps.com/t/is-it-possible-to-send-multiple-rows-of-json-data-through-trigger-webhook/73284/5 "2024-05-12T11:58:09Z")

</div>

Yes, thank you for saying that. You will be blessed
