Copy-paste these snippets into your Zapier or Make workflows. Replace YOUR_TOKEN_HERE with your workspace's ingest token.
Updates all snippets below
Zapier — Webhooks by Zapier (POST)
In your Zap, add a final step: Webhooks by Zapier → POST. For failure paths, use the error handler in Zapier's “Paths” and add the failure webhook there.
Add an HTTP → Make a request module at the end of your scenario route. For error handling, use Make's error handler route and add the failure snippet there.
Success request
URL: https://api.pipelineai.cloud/v1/ingest/YOUR_TOKEN_HERE
Method: POST
Body type: Raw (JSON)
Body:
{
"workflow": "{{scenario.name}}",
"status": "success",
"timestamp": "{{now}}"
}
Failure request
URL: https://api.pipelineai.cloud/v1/ingest/YOUR_TOKEN_HERE
Method: POST
Body type: Raw (JSON)
Body:
{
"workflow": "{{scenario.name}}",
"status": "failed",
"timestamp": "{{now}}",
"error": "{{error.message}}"
}
What to tell clients: “This takes about 15–30 minutes per workflow. It's just adding one step to your existing automations — no rebuilds needed. We don't need access to your systems, only event signals.”