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

# Link Confirmation - Verify OTP

This webhook is triggered when a user submits the OTP to confirm care context linking. Validate the OTP generated during the [Link Initiation](/api-reference/user-app/abdm-connect/webhooks/discover-link-init) step. If valid, proceed to link the care contexts.

<Note>
  After validating the OTP, call the [On Link Confirm API](/api-reference/user-app/abdm-connect/care-contexts/discover/link_on_confirm) with the list of care contexts to complete the linking.
</Note>

### 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": "abdm",
  "event": "abha.context_discover_link_confirm",
  "event_time": 1750317942,
  "transaction_id": "<webhook transaction id>",
  "timestamp": 1750317942,
  "business_id": "77237637763817",
  "client_id": "77237637763817",
  "data": {
    "linkRefNumber": "temp",
    "request_id": "546f3465-30fa-4894-89f4-b884a2683fdf",
    "token": "111111",
    "hip_id": "<partner hip id>",
    "oid": "<eka user id>",
    "partner_patient_id": "<partner user id>"
  }
}
```
