When should I use one-call notifications?
One-call notifications are designed for transactional and real-time use cases:- Order confirmations
- Password reset alerts
- Appointment reminders
- Real-time activity notifications
- System alerts
What are the two delivery modes?
| Mode | Max targets | Behavior |
|---|---|---|
realtime | 1 | Delivers immediately to a single user |
batch | 10,000 | Queues delivery for bulk processing |
How does it work?
- Create and approve a template with a variable schema
- Call
POST /api/notifications/sendwith the template key, targets, and variables - The platform resolves the template, substitutes variables, and delivers through all linked channels
What is fire-and-forget?
One-call notifications are fire-and-forget. The API returns anotificationId immediately, but there is no campaign object to track status. Use analytics to monitor delivery metrics after the fact.
The response includes the resolved
channels array showing which delivery channels were used, along with the mode, title, and tag for your records.