How it works
Every lead box has three parts:- Agent — the agent whose activity you want to hear about. Lead boxes are per-agent, so you can subscribe different destinations to different agents.
- Events — one or more events from the event catalog. Leave everything unchecked to subscribe to all external events.
- Destination — either a Webhook (HTTPS endpoint that receives a JSON
POST) or an Email address that receives a formatted message.
Adding a notification
1
Open the agent
From Agents, open the agent you want to hear about.
2
Add a notification
In the agent’s settings, click Add notification to open the notification dialog.
3
Pick events
Check the events you want to receive from the event catalog. Leave them all unchecked to receive every external event.
4
Choose a destination
Pick Webhook and enter an HTTPS endpoint (optionally with a Bearer token), or pick Email and enter a destination address.
5
Save
Save the notification. It takes effect immediately for new activity on that agent.
sold for your ops team.
Webhook destination
Webhook deliveries are HTTPPOST requests to your endpoint with a JSON body describing the event and the contact it happened on. The payload shape matches the outbound webhooks reference — activity_type, activity_label, contact identifiers, and originator data.
Endpoints must be HTTPS. Mav expects a prompt
200 response — acknowledge the payload first and process it asynchronously.- Encoding — JSON (default) or form-encoded.
- Auth — None or Bearer. When Bearer is selected, the token you provide is sent as an
Authorization: Bearer <token>header on every delivery.