Get Patient
To get the patient details
Get Patient
POST {{apiUrl}}doctor/patients/view
Request Body
Name
Type
Description
patient_id*
String
Unique id of the Patient
apikey*
String
Authentication token
mobile*
String
Either patient_id or mobile should be passed.
show_family_list
Boolean
Default: false
If passed true then patient's family member details will be added in the response.
{
"status_code": "1",
"status_message": "Success",
"datetime": "2024-01-25 16:07:36",
"data": [
{
"firstname": "Manav",
"lastname": "Patel",
"zipcode": "380005",
"mobile": "9846251658",
"family_member_list": [ // family members if any
{
"id": "dXuOGHX5xlrfXQkkByAX3g==",
"firstname": "Poojan",
"lastname": "Mehta",
"zipcode": "380005",
"mobile": "9887878787"
},
{
"id": "dXuOGHX5xlrfXQkkByAX3g==",
"firstname": "Jay",
"lastname": "Patel",
"zipcode": "",
"mobile": ""
}
],
"patient_id": "dXuOGHX5xlrfXQkkByAX3g==",
"custom_fields": { // addtionaly fields related to patient
"patient_ipd_id": "IPD1234",
"patient_mapped_id": "PMID9876"
}
}
]
}{
"status_code": "0",
"status_message": "\"patient_id\" is required",
"datetime": "2022-12-07 12:32:04",
"data": null
}Get Patient
POST https://api.evitalrx.in/v1/doctor/patients/view
Request Body
Name
Type
Description
patient_id*
String
1A62EQMlDx8t
apikey*
String
V6oBy7oMFZbX
mobile*
String
AsD3PhN0mKYs
show_family_list
Boolean
2dHrkQuS9UDT
Last updated
Was this helpful?