Hi Hans, welcome to SEQUEmatic! Hopefully you find it to be a suitable replacement for Stringify and Apilio.
Unfortunately the current IFTTT webhook step doesn't allow you to pass parameters to IFTTT, although this is in the works for an update in the next month.
However, you can achieve what you're after by using the custom webhook call and building out the IFTTT URL yourself.
In Sequematic
Add a custom webhook call step in your sequence, with the URL:
https://maker.ifttt.com/trigger/{event}/with/key/{my key}?value1={value1}
You should then replace:
- {event} with the IFTTT event name
- {my_key} with your IFTTT key
- {value1} with the text you want IFTTT to display in the notification
In IFTTT
Create an IFTTT applet set up with:
- a webhook trigger:
- Event name should match the value you set in {event} above
- a notification action
- When building the notification message, use 'Insert ingredients' and select Value1 to output the text you passed in {value1} above
Let me know if you have any questions setting this up.