> ## Documentation Index
> Fetch the complete documentation index at: https://developer.eka.care/llms.txt
> Use this file to discover all available pages before exploring further.

# Record uploaded webhook

The webhook event is sent when a record is uploaded.

### 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": "rec",
  "event": "rec.uploaded",
  "event_time": 1784460123,
  "transaction_id": "f9be74b5-edd4-43fe-83b9-2f4f80d11233",
  "timestamp": 1784460124,
  "business_id": "7177582627443091",
  "client_id": "sachin",
  "data": {
    "doctor_id": "177582627448596",
    "document_id": "f9be74b5-edd4-43fe-83b9-2f4f80d11233",
    "patient_id": "178213256173099"
  }
}
```

### Field Descriptions

* **`service`**: The service that triggered the event (rec).
* **`event`**: The type of event being triggered (rec.uploaded).
* **`event_time`**: Unix timestamp indicating when the event occurred.
* **`transaction_id`**: Identifier for this transaction.
* **`timestamp`**: Unix timestamp indicating when the webhook was sent.
* **`business_id`**: Identifier for the business associated with the event.
* **`client_id`**: Identifier for the client associated with the event.
* **`data`**: Contains additional details related to the event.
* **`doctor_id`**: Identifier for the doctor associated with the uploaded record.
* **`document_id`**: Identifier for the uploaded document.
* **`patient_id`**: Internal system identifier for the patient.
