Read
Retrieve health records
Connect
- Webhooks
General Tools
- Self Assessments
- Medical Document Parsing
- Medical Speech Understanding
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
- Providers
- Profile
- Scan & Share
- Errors
Medical Records
- Create
- Read
- Update
- Delete
- Webhooks
User App
- Notifications
- Vital
- Webhooks
- Privacy
Release Notes
- ABDM Connect
Read
Retrieve health records
Retrieve a health record based on the given identifier, hip_id, and health_id in nrces FHIR json format.
GET
/
health
/
api
/
v1
/
fhir
/
retrieve
curl --request GET \
--url https://api.eka.care/health/api/v1/fhir/retrieve \
--header 'Authorization: Bearer <token>'
{
"resourceType": "Bundle",
"type": "document",
"link": [
{
"url": "<string>",
"relation": "<string>"
}
],
"entry": [
{
"resource": {
"author": [
{
"reference": "<string>"
}
],
"date": "2023-11-07T05:31:56Z",
"extension": [
{
"url": "<string>",
"valueString": "<string>"
}
],
"id": "<string>",
"identifier": {
"system": "<string>",
"value": "<string>"
},
"meta": {
"lastUpdated": "2023-11-07T05:31:56Z"
},
"resourceType": "<string>",
"section": [
{
"entry": [
{
"reference": "<string>"
}
],
"title": "<string>"
}
],
"status": "<string>",
"subject": {
"reference": "<string>"
},
"title": "<string>",
"type": {
"text": "<string>"
}
}
}
],
"id": "<string>",
"meta": {
"versionId": "<string>",
"lastUpdated": "2023-11-07T05:31:56Z",
"profile": [
"<string>"
],
"security": [
{
"code": "<string>",
"display": "<string>",
"system": "<string>"
}
]
},
"identifier": {
"system": "<string>",
"value": "<string>"
},
"timestamp": "2023-11-07T05:31:56Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The unique identifier for the health record is care_context_id.
The HIP (Health Information Provider) ID.
The health ID associated with the record.
Response
200
application/json
Successful retrieval of health records.
curl --request GET \
--url https://api.eka.care/health/api/v1/fhir/retrieve \
--header 'Authorization: Bearer <token>'
{
"resourceType": "Bundle",
"type": "document",
"link": [
{
"url": "<string>",
"relation": "<string>"
}
],
"entry": [
{
"resource": {
"author": [
{
"reference": "<string>"
}
],
"date": "2023-11-07T05:31:56Z",
"extension": [
{
"url": "<string>",
"valueString": "<string>"
}
],
"id": "<string>",
"identifier": {
"system": "<string>",
"value": "<string>"
},
"meta": {
"lastUpdated": "2023-11-07T05:31:56Z"
},
"resourceType": "<string>",
"section": [
{
"entry": [
{
"reference": "<string>"
}
],
"title": "<string>"
}
],
"status": "<string>",
"subject": {
"reference": "<string>"
},
"title": "<string>",
"type": {
"text": "<string>"
}
}
}
],
"id": "<string>",
"meta": {
"versionId": "<string>",
"lastUpdated": "2023-11-07T05:31:56Z",
"profile": [
"<string>"
],
"security": [
{
"code": "<string>",
"display": "<string>",
"system": "<string>"
}
]
},
"identifier": {
"system": "<string>",
"value": "<string>"
},
"timestamp": "2023-11-07T05:31:56Z"
}