> ## 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.

# Smart report webhook

Webhook event is sent when Smart Report processing completes.

### 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}
{
        "event": "rec.srp",
        "service": "rec",
        "event_time": 1759234802,
        "transaction_id": "4d39628e-7916-47d7-bc35-a00cb986942b",
        "data": {
             "status": "parsing_complete",
             "document_id": "ed66604d-9d62-4f71-a5fb-b78a490148a0",
             "identifier": "ekacare-sr-82b9b563-6c83-48e6-a89e-c2621db5599a",
        }
}
```

### Field Descriptions

* **`data`**: Contains additional details related to the event.
  * **`status`**: Current parsing state (parsing\_initiated, parsing\_complete, parsing\_error).
  * **`document_id`**: ID of the document that was parsed.
  * **`identifier`**: Care-Context ID of document.
  * **`data`**: Additional Data.
    * **`fhir`**: Fhir Data in Base64 encoded Format.

Note: The status field is an enum with following possible values:

* parsing\_complete
* parsing\_error
* parsing\_initiated
