GET
/
dr
/
v1
/
business
/
patients
/
search
curl --request GET \
  --url https://api.eka.care/dr/v1/business/patients/search \
  --header 'auth: <auth>'
{
  "data": {
    "profiles": [
      {
        "name": "Amit Kumar",
        "patient_id": "987654321098722",
        "patient_profile": {
          "patient_id": "987654321098722",
          "first_name": "Amit",
          "middle_name": "",
          "last_name": "Kumar",
          "dob": "1990-05-15",
          "gender": "M",
          "mobile": "+919876543210",
          "created_at": "2024-08-13T07:31:53.750Z"
        }
      },
      {
        "name": "Priya Sharma",
        "patient_id": "98765432109222",
        "patient_profile": {
          "patient_id": "987654321098722",
          "first_name": "Priya",
          "middle_name": "",
          "last_name": "Sharma",
          "dob": "1985-09-20",
          "gender": "F",
          "mobile": "+918765432109",
          "created_at": "2023-10-26T06:20:36.758Z"
        }
      },
      {
        "name": "Rahul Gupta",
        "patient_id": "987654321098765",
        "patient_profile": {
          "patient_id": "987654321098765",
          "first_name": "Rahul",
          "middle_name": "",
          "last_name": "Gupta",
          "dob": "1978-11-30",
          "gender": "M",
          "mobile": "+917654321098",
          "created_at": "2024-08-14T09:01:14.806Z"
        }
      }
    ]
  },
  "status_code": 200,
  "success": true
}

Headers

auth
string
required

The auth token of the user. It is used to authenticate the user.

Query Parameters

mobile
string
required
Example:

"<mobile_no>"

Response

200
application/json
OK

The response is of type object.