GET v1/api/enrollee/getLaboratoryTest?enrolleeNo={enrolleeNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| enrolleeNo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
getLaboratoryTestResult| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errorMsg | string |
None. |
|
| labTest | Collection of laboratoryPrescribed |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errorMsg": "sample string 2",
"labTest": [
{
"date": "sample string 1",
"providerName": "sample string 2",
"labTestName": "sample string 3",
"labTestRequest_id": "sample string 4"
},
{
"date": "sample string 1",
"providerName": "sample string 2",
"labTestName": "sample string 3",
"labTestRequest_id": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<getLaboratoryTestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.getLaboratoryTest">
<errorMsg>sample string 2</errorMsg>
<labTest>
<getLaboratoryTestResult.laboratoryPrescribed>
<date>sample string 1</date>
<labTestName>sample string 3</labTestName>
<labTestRequest_id>sample string 4</labTestRequest_id>
<providerName>sample string 2</providerName>
</getLaboratoryTestResult.laboratoryPrescribed>
<getLaboratoryTestResult.laboratoryPrescribed>
<date>sample string 1</date>
<labTestName>sample string 3</labTestName>
<labTestRequest_id>sample string 4</labTestRequest_id>
<providerName>sample string 2</providerName>
</getLaboratoryTestResult.laboratoryPrescribed>
</labTest>
<success>true</success>
</getLaboratoryTestResult>
text/html
Sample:
{"success":true,"errorMsg":"sample string 2","labTest":[{"date":"sample string 1","providerName":"sample string 2","labTestName":"sample string 3","labTestRequest_id":"sample string 4"},{"date":"sample string 1","providerName":"sample string 2","labTestName":"sample string 3","labTestRequest_id":"sample string 4"}]}