Get Patient

To get the patient details

POST {{apiUrl}}patient/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.

{
    "status_code": "1",
    "status_message": "Success",
    "datetime": "2022-12-06 18:11:54",
    "data": [
        {
            "firstname": "Manav",
            "lastname": "Patel",
            "zipcode": "380008",
            "mobile": "9787998785",
            "patient_id": "qAj4hhwefVxwuZX9nFxHkQ==",
            "custom_fields": { // addtional fields related to patients
                "patient_ipd_id": "IPD1234",
                "patient_mapped_id": "PMID9876"
            }
        }
    ]
}

Last updated