Allergies
GET api/Patient/{systemID}/Profile/Allergies?patientID={patientID}
Retrieve listing of patient allergies on file
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| systemID | The SystemID of the pharmacy system. |
Define this parameter in the request URI. |
| patientID | Unique ID of patient in pharmacy system. |
Define this parameter in the request URI. |
Response Codes
- OK (200)
- NotFound (404)
- InternalServerError (500)
- BadRequest (400)
Response Information
List of Patient Allegies
Response body formats
application/json, text/json
Sample:
[
{
"Description": "sample string 1"
},
{
"Description": "sample string 1"
},
{
"Description": "sample string 1"
}
]
text/javascript
Sample:
[{"Description":"sample string 1"},{"Description":"sample string 1"},{"Description":"sample string 1"}]
application/xml, text/xml
Sample:
<ArrayOfPatientAllergy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QCFWebAPI.Models">
<PatientAllergy>
<Description>sample string 1</Description>
</PatientAllergy>
<PatientAllergy>
<Description>sample string 1</Description>
</PatientAllergy>
<PatientAllergy>
<Description>sample string 1</Description>
</PatientAllergy>
</ArrayOfPatientAllergy>