Hi Jean,
maybe I misunderstand, but I think you can just:
- add an automation that triggers when a record is created.
- Next use the “Run script” module.
- Define which values to use in the script (I often only send the record id and do a lookup of all neeed data in the make scenario).
- Create the make scenario that listens to a webhook.
- In the airtable automations “Run script” module call the webhook with the fetch function.
Something like this
let inputConfig = input.config();
console.log(`The value of record_id is ${inputConfig.record_id}`);
let response = await fetch(`https://webhook.site/1dea3bf2-c9ba-4358-90c3-a6ccdfa3570c?record_id=${inputConfig.record_id}`);
// console.log(await response.json());
You can also update a hidden required field when submitting the form and trigger the automation when this is set.
I have many automations like this and it works pretty reliable.