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.