Automate tasks by connecting Integromat webhooks with your CSML flows.
To trigger an Integromat scenario, you will need to create a custom webhook, by following this guide: https://www.integromat.com/en/help/app/webhooks. You can send any payload as long as it is correctly formatted as JSON.
do App(
"integromat",
webhook = "WEBHOOK_URL",
payload = {"some": "data"},
)
This will perform a HTTP call to the Integromat webhook that is very similar to this CSML code:
do HTTP("WEBHOOK_URL").post({"some":"data"}).send()