Get Patient

To get the patient details

Get Patient

POST https://api.evitalrx.in/v1/doctor/patients/view

Request Body

NameTypeDescription

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": [
                {
                    "id": "dXuOGHX5xlrfXQkkByAX3g==",
                    "firstname": "Poojan",
                    "lastname": "Mehta",
                    "zipcode": "380005",
                    "mobile": "9887878787"
                },
                {
                    "id": "dXuOGHX5xlrfXQkkByAX3g==",
                    "firstname": "Jay",
                    "lastname": "Patel",
                    "zipcode": "",
                    "mobile": ""
                }
            ],
            "patient_id": "dXuOGHX5xlrfXQkkByAX3g=="
        }
    ]
}

Last updated