Skip to main content
Webhooks

Webhook Notifications

Receive HIPAA-compliant real-time notifications for healthcare events.

HIPAA Compliant

Webhook payloads are encrypted and contain minimal PHI. Full patient data must be fetched via authenticated API calls.

Available Events

EventDescriptionCategory
patient.createdNew patient registeredPatients
patient.updatedPatient information changedPatients
appointment.scheduledNew appointment bookedScheduling
appointment.cancelledAppointment cancelledScheduling
encounter.startedPatient visit begunClinical
encounter.completedVisit documentation completeClinical
result.availableLab/test result readyClinical

Webhook Payload

Example: appointment.scheduled
{
  "id": "evt_health_123456",
  "type": "appointment.scheduled",
  "timestamp": "2024-12-04T10:30:00Z",
  "data": {
    "appointment_id": "appt_abc123",
    "patient_id": "patient_xyz",
    "provider_id": "provider_456",
    "scheduled_time": "2024-12-10T14:00:00Z",
    "visit_type": "follow_up"
  }
}

Next Steps