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
- Overview
- HIU
- PHR
- Auto Approval
- Care Contexts
- 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
HIU
Consent details
POST
/
abdm
/
v1
/
consents
/
details
Copy
Ask AI
curl --request POST \
--url https://api.eka.care/abdm/v1/consents/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"consent_id": "<string>",
"health_id": "<string>"
}'
Copy
Ask AI
{
"data": [
{
"care_contexts": [
{
"created_at": "<string>",
"display": "<string>",
"documents": [
{
"fhir_url": "<string>",
"id": "<string>"
}
],
"id": "<string>",
"status": "<string>"
}
],
"hip": {
"id": "<string>",
"name": "<string>"
}
}
]
}
Authorizations
The API requires a Bearer token (JWT) for authentication.
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.eka.care/abdm/v1/consents/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"consent_id": "<string>",
"health_id": "<string>"
}'
Copy
Ask AI
{
"data": [
{
"care_contexts": [
{
"created_at": "<string>",
"display": "<string>",
"documents": [
{
"fhir_url": "<string>",
"id": "<string>"
}
],
"id": "<string>",
"status": "<string>"
}
],
"hip": {
"id": "<string>",
"name": "<string>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.