> ## Documentation Index
> Fetch the complete documentation index at: https://ekacare-mintlify-dfb0ffc0.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Booking init

A webhook event is sent for the response of the order status API, where we receive the booking status and details
[Booking Init](https://developer.eka.care/api-reference/user-app/abdm-connect/phys-cons/init)

### Request

**Headers:**

* `Eka-Webhook-Signature`: `<Eka Webhook Signature>`  [Refer: Webhook Signature](/api-reference/connect/webhooks/webhook-signature)
* `Content-Type`: `application/json`

**Body:**

```json theme={null}
{
  "service": "uhi",
  "event": "booking.init",
  "event_time": 1749822309,
  "transaction_id": "<webhook transaction id>",
  "timestamp": 1749825214,
  "business_id": "<partner business id>",
  "client_id": "<partner client id>",
  "data": {
         "billing": {
            "address": "<string>",
            "email": "<string>",
            "name": "<string>",
            "phone": "<string>"
          },
          "consultation": {
            "end_time": "<string>",
            "slot_id": "<string>",
            "start_time": "<string>",
            "type": "<string>"
          },
          "doctor": {
            "doctor_gender": "<string>",
            "doctor_image": "<string>",
            "id": "<string>",
            "name": "<string>",
            "tags": [
              "<string>"
            ]
          },
          "facility_id": "<string>",
          "order_id": "<string>",
          "patient": {
            "dob": "<string>",
            "gender": "<string>",
            "id": "<string>"
          },
          "payment": {
            "status": "<string>",
            "type": "<string>"
          },
          "quote": {
            "breakup": [
              {
                "title": "<string>",
                "value": "<string>"
              }
            ],
            "total": "<string>"
          },
          "terms": [
            {
              "long_desc": "<string>",
              "short_desc": "<string>",
              "terms_state": "<string>",
              "type": "<string>"
            }
          ]
}
}
```
