Issue mapping data from Make Webhook to Glide Add Row

Hi,

I’m working on a Glide project where I need to receive data from Make via a Webhook, and then use it to populate a new row in a Glide table using the Add Row action.

Problem:

The POST from Make works (the Glide Webhook receives the payload), but when I try to map the received fields in the Add Row action, Glide doesn’t recognize them.

I get values like {{body.nom}} or {{body.rpps}}, but they are not interpreted. Even when using @data.nom or @values.nom, Glide either returns an error or inserts the raw text.

What I’ve tried:

  • Sending JSON in both formats: {“data”: {…}} and {“values”: {…}}

  • Refreshing the Webhook schema by sending a test from Make before mapping

  • Making sure the JSON keys match the column names in the Glide table

  • Deleting and recreating the Add Row action

Question:

What is the correct method / syntax so that fields sent from Make are detected and usable in Glide’s Add Row action after a Webhook trigger?

Is there a specific JSON format or recommended configuration so that Glide parses the data correctly?

Thanks in advance for your help!

I’m attaching a screenshot of the Workflow on the Glide side.

You need to use a Query JSON step for each value that you need.

1 Like

To expand on @Darren_Murphy ‘s point, I would add that in Make you might enable Parse JSON in your receiving webhook, so that the values you send to Glide for Add Row are already parsed, in which case you can use the Add Row action in Make’s Glide module and bypass the webhook workflow altogether.

2 Likes