v1

latestOpenAPI 3.0.32026-07-26229361630.0 KB
Patient Registration API

Add Patient to Directory

This functionality enables the addition of new patient records to a business' directory. Users can provide necessary details such as personal information, contact details, and medical history to create a new patient profile.

In case the patient is already registered with Eka care, then passing the patient eka id will be enough

post/dr/v1/patient

Headers

authstring required

The auth token of business_id. It is used to authenticate the business. The token can be fetched from the auth api.

Request body

OR

Example request

{
  "designation": "Mr.",
  "first_name": "Test",
  "partner_patient_id": "6742984",
  "last_name": "Patient",
  "mobile": "+919999999999",
  "gender": "M",
  "address": {
    "city": "Bangalore",
    "pincode": 560049
  },
  "dob": "1987-01-06"
}

Response

OK

patient_idstring

Example response

{
  "patient_id": "123456789"
}