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

# Booking confirm

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

### 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.confirm",
  "event_time": 1749822309,
  "transaction_id": "<webhook transaction id>",
  "timestamp": 1749825214,
  "business_id": "<partner business id>",
  "client_id": "<partner client id>",
  "data": {
            "doctor_info": {
        "education": "<string>",
        "experience": "<string>",
        "gender": "<string>",
        "id": "<string>",
        "languages": [
          "<string>"
        ],
        "name": "<string>"
      },
      "order_id": "<string>",
      "pin": "<string>",
      "slot": {
        "end": "<string>",
        "slot_id": "<string>",
        "start": "<string>"
      },
      "state": "<string>"
}
}
```
