Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Purpose: Document how to search by a patient record by First Name, Last Name and Date of Birth.

...

1.) The {tenantid} needs to be removed and replaced.

*Note: I have created variable for the tenantId

https://api.qa.eu.noah-es.com/:tenantid/api/Patients/advanced-search?skip=0&take=100

...

Below is the JSON for my example. I have a patient named Patient Search with October 4, 1973 for their birth data.

*Note: The Take notice of the DoB format. This The correct format must be used. See Picture below.

...

Code Block
{
  "personalData": {
    "firstName": "Patient",
    "lastName": "Search",
    "birthDate": "1973-10-04"
  }
}

...

You should also see something like this in the return body of the route.

*NOTE: In the return body of the route, you will see the patientid. I mention this because you may need this for other routes you want wish to run.

...

Full return body of the route

...