Connect
- Webhooks
HealthAI
- Assessment
- EkaScribe
General Tools
- Medical Document Parsing
Doctor Tool
- Actors
- Instructions
- Patient Registration API
- Doctor and clinic API
- Appointment API
- Payments API
- Prescription API
- Notify
- Webhooks
ABDM Connect
- Create and Login
- User Session
- Patient Requests
- Consents
- Care Contexts
- Overview
- Linked Providers
- Linked Care Contexts
- Discover and Link
- Providers
- Profile
- Scan & Share
- Errors
- Webhooks
Medical Knowledge-bases
- Overview
- Protocols
- Medications
Medical Records
- Create
- Read
- Update
- Delete
- Webhooks
User App
- Notifications
- Vital
- Webhooks
- Privacy
Release Notes
- ABDM Connect
HIP
Discover Link On Confirm
This API is used by HIP to confirm the linking of care contexts after OTP verification.
POST
/
abdm
/
v1
/
care-contexts
/
link
/
on-confirm
Copy
Ask AI
curl --request POST \
--url https://api.eka.care/abdm/v1/care-contexts/link/on-confirm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"error": {
"code": 123,
"message": "<string>"
},
"patients": [
{
"care_contexts": [
{
"display": "<string>",
"ref_num": "<string>"
}
],
"display": "<string>",
"hi_type": "<string>",
"ref_num": "<string>"
}
],
"request_id": "<string>"
}'
Copy
Ask AI
This response does not have an example.
Authorizations
The API requires a Bearer token (JWT) for authentication.
Body
application/json
Response
204
No Content
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.eka.care/abdm/v1/care-contexts/link/on-confirm \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"error": {
"code": 123,
"message": "<string>"
},
"patients": [
{
"care_contexts": [
{
"display": "<string>",
"ref_num": "<string>"
}
],
"display": "<string>",
"hi_type": "<string>",
"ref_num": "<string>"
}
],
"request_id": "<string>"
}'
Copy
Ask AI
This response does not have an example.
Assistant
Responses are generated using AI and may contain mistakes.