Hi Everyone
I have been trying to link my airtable base with Make.com via a webhook that then uses a 'get a record' module to view what has gone into the base and can change the fields via chatGPT and place it back into airtable with the 'update a record' module. The webhook is working fine and both of the airtable modules can find my base. my problem is that when I try to run once on make.com the process stops at this 'get a record' module and gives the fault code:
BundleValidationError
Validation failed for 1 parameter(s).
- Missing value of required parameter 'id'.
My current assumption is that it is to do with the 'recordID' variable within airtable and I have tried looking into a lot of other possibilities but I have hit a wall now and don't know what else there is that I can try to change to make it work as it is intended. Any help is greatly appreciated.
This is the code that I have used in the Automations section:
let url = "MyURL"; // Webhook URL
let config = input.config(); // Input variables
// Construct the URL with query parameters
url += `?UrgentMessage=${encodeURIComponent(config.UrgentMessage)}`;
url += `&Name=${encodeURIComponent(config.Name)}`;
// Send the webhook request
await fetch(url);