v1
latestOpenAPI 3.0.32026-07-26229361630.0 KBHIP Users API
Get All HIP Users of a Business
This API retrieves the list of all HIP users associated with a business. The response includes each user's details along with their linked doctors and clinics.
Use this API to fetch all HIP users for a business account in one call.
get/cdr/v1/hipusers/
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",
"users": [
{
"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"
}
]
}
]
}