Hi, Noob scripter here
I’d like to create an automation based on a response from an email, that will trigger an update on my airtable. This is how I want the flow to work.
Based on a status I send an email that contains a link for the receiver to click once a job is completed. this link is the webhook I generated via the airtable script. once clicked this webhook updates the status of the airtable record.
After doing a lot of reading on the webhook I now understand that you need to create a POST request with an object (excuse my lack of knowledge I’m very noob at scripting) or payload for the webhook to deliver.
This has raised a few questions for me.
- How do I script the payload to be inserted into this webhook for the user. i.e.
{"record": Record_ID, "status": "accepted"}
- Are webhooks unique? because I’ll be sending out unique webhooks and I worry that the URL changes to the last updated record id.
Is my logic on the right track with this?