RxUpdate
POST api/Orders/{systemID}/RxUpdate
Updates Prescription on file.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| systemID | Unique ID for system |
Define this parameter in the request URI. |
| rx | Script to update
RxNumber - Unique identifier for prescription
FillListIndicator - Indicator if prescription is on fill list (0 = No, 1 = Yes)
UpdateOriginal - If prescription has been discontinued and reassigned update original?
(true = update original, false = update reassigned prescription [defaults to false])
If prescription has not been discontinued and reassigned this is ignored and original is updated.
SpecialAuthorization - Update Special Authorization Indicator
HealthMinderRx - Turn HealthMinder for this RX on or off |
Define this parameter in the request body. |
Response Codes
- OK (200)
- BadRequest (400)
- NotFound (404)
- InternalServerError (500)
Request body formats
application/json, text/json
Sample:
{
"RxNumber": "sample string 1",
"FillListIndicator": "sample string 2",
"UpdateOriginal": true,
"SpecialAuthorization": "sample string 4",
"HealthMinderRx": true
}
text/javascript
Sample:
{"RxNumber":"sample string 1","FillListIndicator":"sample string 2","UpdateOriginal":true,"SpecialAuthorization":"sample string 4","HealthMinderRx":true}
application/xml, text/xml
Sample:
<RxScriptUpdateData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QCFLibrary.Common.Data"> <FillListIndicator>sample string 2</FillListIndicator> <HealthMinderRx>true</HealthMinderRx> <RxNumber>sample string 1</RxNumber> <SpecialAuthorization>sample string 4</SpecialAuthorization> <UpdateOriginal>true</UpdateOriginal> </RxScriptUpdateData>
Response Information
Response body formats
application/json, text/json
Sample:
{
"Successful": true,
"Message": "sample string 2"
}
text/javascript
Sample:
{"Successful":true,"Message":"sample string 2"}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QCFWebAPI.Models"> <Message>sample string 2</Message> <Successful>true</Successful> </Result>