Make scenario alerts with Trigv push notifications

Send Trigv push notifications from Make scenarios when an automation finishes, fails, or produces a result worth seeing immediately. Until native Make app support is ready, use the HTTP module to call the Trigv event API.

Best uses

Scenario results

Notify when a CRM sync, spreadsheet import, form workflow, or scheduled scenario completes.

Failure alerts

Send errors to a dedicated Trigv channel so failed scenarios do not disappear in email.

Business signals

Push high-value events such as new leads, invoices, customer updates, and operational handoffs.

Set up the HTTP module

  1. Create a Trigv API key and subscribe your device to a channel such as automations.
  2. Open the Make scenario you want to monitor.
  3. Add an HTTP module where the notification should run.
  4. Configure a POST request to the Trigv event API and map values from earlier modules.

HTTP module settings

FieldValue
MethodPOST
URLhttps://api.trigv.com/api/v1/events
HeadersAuthorization: Bearer trgv_YOUR_KEY and Content-Type: application/json.
Body typeRaw JSON

JSON body example

Code
{
	"channel": "automations",
	"title": "Make scenario completed",
	"description": "{{1.email}} synced to the CRM",
	"level": "success",
	"event_type": "make.scenario.completed"
}

Use error handlers

Add a Make error handler route when failed scenarios should send a separate alert.

Code
{
	"channel": "automations",
	"title": "Make scenario failed",
	"description": "{{error.message}}",
	"level": "error",
	"event_type": "make.scenario.failed"
}

Troubleshooting

IssueFix
401 responseCheck the bearer token and keep it in a Make connection or variable.
422 responseMake sure channel and title are present in the JSON body.
No push arrivesConfirm the Trigv app is installed and subscribed to the selected channel.