09-03-2025, 08:18 AM
Hi Oliver, try these steps to fix your IFTTT webhook:
Create Applet: Go to ifttt.com, click Create > +This, select Webhooks, choose Receive a web request, set an Event Name (e.g., mywebhooktrigger), and save.
Set Action: Click +That, pick Webhooks > Make a web request. Enter your URL: https://hook.eu1.make.com/6yyjeeeopcdlru...u70zc4jt8v, set Method to POST, Content Type to application/json, and add a Body if needed (e.g., {"value1":"test"}). Save and finish.
Test It: Get your IFTTT key from Webhooks Documentation. Test with:
curl -X POST https://maker.ifttt.com/trigger/mywebhoo...y/YOUR_KEY -d '{"value1":"test"}'
Check Issues: Ensure the URL is correct, the method matches (POST is common for Make.com), and the Event Name is exact. Check IFTTT’s Activity tab and Make.com logs for errors.
Create Applet: Go to ifttt.com, click Create > +This, select Webhooks, choose Receive a web request, set an Event Name (e.g., mywebhooktrigger), and save.
Set Action: Click +That, pick Webhooks > Make a web request. Enter your URL: https://hook.eu1.make.com/6yyjeeeopcdlru...u70zc4jt8v, set Method to POST, Content Type to application/json, and add a Body if needed (e.g., {"value1":"test"}). Save and finish.
Test It: Get your IFTTT key from Webhooks Documentation. Test with:
curl -X POST https://maker.ifttt.com/trigger/mywebhoo...y/YOUR_KEY -d '{"value1":"test"}'
Check Issues: Ensure the URL is correct, the method matches (POST is common for Make.com), and the Event Name is exact. Check IFTTT’s Activity tab and Make.com logs for errors.

