Hello Community,
My Custom Webhook is receiving the same Data 7 times. How Do I make it so it will not take duplicate data.
Airtable Automations > Webhook to Stripe
asblueprint.json (60.3 KB)
This is my 1st time using the AI during automations within Airtable
Could you get the external service to only send one request per item instead of 7?
1 Like
Hey there,
this is not a Make related issue, you will need to check with the API that is sending the webhook and see why its being sent 7 times.
And if you do need a Make side solution in the mean time → is there a way to identify its the same data set? You can save it in a Make data store when the scenario is done, and then when the scenario starts → check the data store if this entry exists already.
1 Like
I did end up finding the answer. It was better just to send it as a script. Making it possible to get the Key and Value over. Holding the Record ID.
I’ve never used Data Store before.
let record = input.config();
var contentWebhook = await fetch (`[YourWebhook]?id=?recordID=
${record.recordID}`);
This is my solution but it may not be everyone’s. It did send the Record ID over just one time.
@ScottWorld posted this in this forum or another.
3 Likes