Webhook Samples
Webhook Payload Examples
These are the samples of the webhook payloads that you will receive from Eka Care:
Appointments
Appointment Webhook
When an appointment is created, modified, or completed, Eka Care will send a webhook event to your registered URL.
Example Payload:
Fetch Appointment Details
After receiving the appointment webhook, use the appointment ID to fetch full details using the Get Appointment Details API.
Endpoint: GET {{HOST}}/dr/v1/business/appointments/{{appointment_id}}
This step allows you to retrieve comprehensive information about the appointment, including any additional details not included in the webhook payload.
Prescriptions
Prescription Webhook
When a prescription is created, Eka Care will send a webhook event to your registered URL.
Example Payload:
Fetch Prescription Details
After receiving the prescription webhook, use the prescription ID to fetch full details using the Get Prescription Details API.
Endpoint: GET {{HOST}}/dr/v1/business/prescription/{{prescription_id}}
This step allows you to retrieve comprehensive information about the prescription, including medication details and other relevant information not included in the webhook payload.
Voice2RX
Voice2RX Webhook
When a medical audio file is uploaded, Eka Care will send a webhook event to your registered URL.
Fetch Medical Audio Upload Results
After receiving the webhook, use the transaction ID to fetch the full upload result via the Retrieve Result API.
Endpoint: GET {{HOST}}/voice-record/api/status/{{transaction_id}}
This API provides the upload status (e.g., queued, inprogress, completed, deleted, error, partial_completed) along with the FHIR output for the processed voice data.