MazzaAI

Webhooks as triggers

Start an automation from an outside system using a private webhook URL.

A webhook lets another system start a MAZZA automation. MAZZA gives you a private web address, and when an outside tool sends data to it, your automation runs. This is how you connect MAZZA to software that is not built in.

Use a webhook trigger

1

Add a webhook trigger

Create an automation with an incoming webhook as its trigger. MAZZA gives you a unique URL.

2

Call it from your system

Have the outside tool send a request to that URL when its event happens.

3

Use the data

Your automation can use the information sent in the request inside its actions.

A request looks like this:

curl -X POST "https://app.mazzaai.com/api/webhooks/trigger/your-unique-key" \
  -H "Content-Type: application/json" \
  -d '{ "name": "Sara", "phone": "+9715XXXXXXX" }'

Keep the URL secret

Anyone with the webhook URL can trigger your automation. Treat it like a password, and generate a new one if it leaks.

Last updated June 2026