Ritten Webhooks API
Ritten provides webhooks for various events that occur in the system. Integrating partners can subscribe to these events to receive real-time updates. Webhooks sent from Ritten are POST requests with a JSON body containing the event `type` and associated `data`. The schema for the `data` object will vary depending on the event type. ``` { "type": "patient.admit", "data": { "patientId": "182c2e54-3494-4b85-aba5-038cf539d5bf", "programId": "9a5e64b0-0a73-4cb5-ab32-44fea16da4e1" } } ```