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
- Data
- Providers
- Linking
- 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
Data
Push care context data to HIU
API for HIP to push care context FHIR data to HIU
POST
/
abdm
/
v1
/
hip
/
care-context
/
data
/
on-fetch
Copy
Ask AI
curl --request POST \
--url https://api.eka.care/abdm/v1/hip/care-context/data/on-fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"entries": [
{
"care_context_id": "<string>",
"checksum": "<string>",
"content": "<string>",
"media": "application/fhir+json"
}
],
"key_information": {
"crypto_alg": "<string>",
"curve": "<string>",
"dh_public_key": {
"expiry": "<string>",
"key_value": "<string>",
"parameters": "<string>"
},
"nonce": "<string>"
},
"transaction_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
202
Accepted
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.eka.care/abdm/v1/hip/care-context/data/on-fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"entries": [
{
"care_context_id": "<string>",
"checksum": "<string>",
"content": "<string>",
"media": "application/fhir+json"
}
],
"key_information": {
"crypto_alg": "<string>",
"curve": "<string>",
"dh_public_key": {
"expiry": "<string>",
"key_value": "<string>",
"parameters": "<string>"
},
"nonce": "<string>"
},
"transaction_id": "<string>"
}'
Copy
Ask AI
This response does not have an example.
Assistant
Responses are generated using AI and may contain mistakes.