Webhooks
Webhook support is coming soon. This page describes the planned architecture.
How webhooks work
- You register a webhook endpoint URL in your Nevatal dashboard
- When an event occurs, Nevatal sends a
POSTrequest to your URL - Your server processes the event and responds with
200 OK
Planned events
| Event | Description |
|---|---|
appointment.created | A new appointment was scheduled |
appointment.updated | An appointment was rescheduled |
appointment.canceled | An appointment was canceled |
appointment.completed | An appointment was marked as completed |
patient.created | A new patient was registered |
patient.updated | Patient information was updated |
invoice.created | A new invoice was created |
invoice.approved | An invoice was approved |
payment.received | A payment was recorded |
Webhook payload format
Security
Webhook payloads include a signature in theX-Nevatal-Signature header for verification. Details on signature validation will be provided when webhooks launch.

