PatientNotes
POST api/Patient/{systemID}/PatientNotes?patientID={patientID}
Add patient note for given patient.
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 the patient account. [*Required] |
Define this parameter in the request URI. |
| patientNoteInfo | PatientNote object
Filling Status - Filling Status of note [*Optional: 1 = No Override Required, 2 = Override Required, 3 = Do Not Allow Fill]
Note Verbiage - Verbiage of note [*Optional: Max length = 100 characters] |
Define this parameter in the request body. |
Response Codes
- OK (200)
- NotFound (404)
- InternalServerError (500)
- BadRequest (400)
Request body formats
application/json, text/json
Sample:
{
"FillingStatus": "sample string 1",
"NoteVerbiage": "sample string 2"
}
text/javascript
Sample:
{"FillingStatus":"sample string 1","NoteVerbiage":"sample string 2"}
application/xml, text/xml
Sample:
<PatientNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QCFWebAPI.Models"> <FillingStatus>sample string 1</FillingStatus> <NoteVerbiage>sample string 2</NoteVerbiage> </PatientNote>