v1
latestOpenAPI 3.0.32026-07-26229361630.0 KBHIP Users API
Get HIP User Details by ID
This API retrieves detailed information about a specific HIP user registered under a business. The response includes the user's personal details, assigned doctors, and associated clinics.
Use this API to get complete profile details of a single HIP user by their Eka user ID.
get/cdr/v1/hipusers/{hip_user_id}
Path parameters
hip_user_idstring required
The unique Eka Care ID of the HIP user.
Headers
authstring required
The authentication token for the business. It is used to verify the business making the request. The token can be fetched from the Auth API.
Response
OK
Example response
{
"status": "success",
"user": {
"id": "176338032692057",
"firstname": "Manoharan",
"lastname": "Mohan",
"mobile": "9840254450",
"email": "criticcaredr@gmail.com",
"is_admin": true,
"seat_type": "p",
"doctors": [
{
"id": "do1763380327031",
"firstname": "Manoharan",
"lastname": "Mohan"
}
],
"clinics": [
{
"id": "c-1506ace382e94bf5ba9751fb",
"name": "Manushree Hospital"
}
]
}
}