Add Patient family member
To add family member of the patient
POST
{{apiUrl}}patient/patients/add_family_member
Request Body
apikey*
String
Authentication token
mobile
Number
Mobile number of Patient's family member
first_name*
String
First name of Patient's family member
last_name*
String
Last name of Patient's family member
dob*
String
Date of Birth of the Patient
Format: YYYY-MM-DD
patient_id*
String
Key of the Patient whose family member is going to be added.
blood_group
String
Blood Group of the Patient
relation*
String
Relation with the Parent Patient. Possible values are:
[ "Brother", "Sister", "Father", "Mother", "Son", "Daughter", "Grand_Father", "Grand_Mother", "Uncle", "Aunt", "Wife", "Husband", "Grand_Daughter", "Grand_Son" ]
parent_patient_mobile*
String
Either pass the Parent patient's Mobile Or Patient ID
{
"status_code": "1",
"status_message": "Family member added successfully",
"datetime": "2022-12-23 11:36:23",
"data": {
"relation": "Brother", // relation with the patient
"firstname": "Manav",
"lastname": "Chauhan",
"mobile": "",
"patient_family_member_id": "jtyjX7EP2GPrTdF+bFGBww==",
"blood_group": "B+",
"dob": "2001-10-14",
"id": "m3nc908treoPV7VLHehTAA==",
"profile_picture": ""
}
}
Last updated
Was this helpful?