Postman - Get a Patient with Noah Patientid
Purpose: To search for a single patient record.
Â
Precondition:
Generate an Access token
Â
1.) The {tenantid} and {patientId} need to be removed and replaced.
*Note: I have created variable for the tenantId and patientId
https://api.qa.eu.noah-es.com/:tenantId/api/Patients/:patientId
Variables I set, pictured below.
Â
2.) Headers
The X-Api-Version needs to be set. At this time 1.0 is the only version, so this is what I have set.
Â
3.) Results
You should get a Status: 200 OK message.
Â
Below is the data the is returned for a successful Get patient route
Â
{
"patientId": "719b27d2-72e7-455d-9862-f044ae62a68a",
"legacyPatientId": 3256,
"created": null,
"updated": null,
"patientDate": null,
"creatorUserAccountId": "f0d680cb-d880-4e99-9568-6f78936a38e2",
"creatorUserInfo": {
"userId": "f0d680cb-d880-4e99-9568-6f78936a38e2",
"legacyUserId": 3,
"idPId": "a9cdc8d9-4c37-418f-9afd-d490d7874ac8"
},
"patientNo": "0003256",
"firstName": "Test3",
"lastName": "Test3",
"middleName": null,
"gender": "Male",
"birthDate": null,
"salutation": null,
"title": null,
"address1": "1237 crestview",
"address2": null,
"address3": null,
"province": null,
"zip": null,
"city": "city ",
"country": "country",
"homePhone": "1234567890",
"workPhone": null,
"ssnumber": null,
"emailAddress": "email@email.com",
"insurance1": null,
"insurance2": null,
"referral": null,
"physician": null,
"mobilePhone": null,
"other1": null,
"other2": null,
"active": null,
"comment": null,
"photo": null
}