Webhook Payload Examples

These are the samples of the webhook payloads that you will receive from Eka Care:

Appointments

1

Appointment Webhook

When an appointment is created, modified, or completed, Eka Care will send a webhook event to your registered URL.

Example Payload:

{
    "service": "dr",
    "event_type": "appointment.created",
    "event_time": 1730189586,
    "timestamp": 1730189588,
    "client_id": "{{client_id}}",
    "business_id": "{{business_id}}",
    "data": {
        "appointment_id": "12345-abcde-67890-fghij",
        "doctor_id": "0910731080189",
        "patient_id": "54321098809",
        "clinic_id": "09876345768790",
        "status": "BK",
        "action": "create",
        "created_at": "2023-07-30T18:07:24.000Z",
        "modified_at": "2023-07-30T18:07:24.000Z",
        "client_meta": {
            "visit_id": "Client_visit_id_123"
        }
    }
}
2

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

1

Prescription Webhook

When a prescription is created, Eka Care will send a webhook event to your registered URL.

Example Payload:

{
    "service": "dr",
    "event_type": "prescription.created",
    "event_time": 1730189586,
    "timestamp": 1730189588,
    "client_id": "{{client_id}}",
    "business_id": "{{business_id}}",
    "data": {
        "status" : "created",
        "action" : "created",
        "rx_id": "{{rx_id}}",
        "appointment_id": "{{appointment_id}}",
        "doctor_id": "{{doctor_id}}",
        "patient_id": "{{patient_id}}",
        "clinic_id": "{{clinic_id}}",
        "created_at": "2023-07-30T18:07:24.000Z"
    },
    "client_meta": {
        "visit_id": "98765-zyxwv-43210-utsrq"
    }
}
2

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

1

Voice2RX Webhook

When a medical audio file is uploaded, Eka Care will send a webhook event to your registered URL.

{
    "business_id": {{busness_id}},
    "client_id": {{client_id}},
    "service_id": "v2rx",
    "event_id": "v2rx.completed",
    "payload": {
        "service": "v2rx",
        "event": "v2rx.completed",
        "event_time": "2023-07-30T18:07:24.000Z",
        "transaction_id": {{transaction_id}},
        "data": {}
    }
}
2

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.