POST api/MedicationRefillRequests
Submits the request for medication refill.
Request Information
URI Parameters
None.
Body Parameters
Model used to get or set patient's medication refill request.
MedicationRefillRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MedicationRefillRequestId |
Unique ID of the medication refill request (Read only). |
globally unique identifier |
None. |
| PatientMedicationId |
Unique ID of patient's medication (Required). |
globally unique identifier |
None. |
| MedicationName |
Name of the medication (Read only). |
string |
None. |
| Status |
Status of the refill request (Read only). |
string |
None. |
| RequestDate |
Date of request of refill of medication (Read only). |
string |
None. |
| LastStatusChange |
Last status change date of the refill request (Read only). |
string |
None. |
| PatientComments |
Comments of the patient on refill request. |
string |
None. |
| DoctorComments |
Comments of the doctor on refill request. |
string |
None. |
Request Formats
application/json, text/json
{
"MedicationRefillRequestId": "d4fb6a24-f981-422d-9097-9065d17e9947",
"PatientMedicationId": "e11e52ba-1d54-4424-8cf7-2448c2c16b92",
"MedicationName": "sample string 3",
"Status": "sample string 4",
"RequestDate": "sample string 5",
"LastStatusChange": "sample string 6",
"PatientComments": "sample string 7",
"DoctorComments": "sample string 8"
}
application/xml, text/xml
<MedicationRefillRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientMedications"> <DoctorComments>sample string 8</DoctorComments> <LastStatusChange>sample string 6</LastStatusChange> <MedicationName>sample string 3</MedicationName> <MedicationRefillRequestId>d4fb6a24-f981-422d-9097-9065d17e9947</MedicationRefillRequestId> <PatientComments>sample string 7</PatientComments> <PatientMedicationId>e11e52ba-1d54-4424-8cf7-2448c2c16b92</PatientMedicationId> <RequestDate>sample string 5</RequestDate> <Status>sample string 4</Status> </MedicationRefillRequestModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
MedicationRefillRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MedicationRefillRequestId |
Unique ID of the medication refill request (Read only). |
globally unique identifier |
None. |
| PatientMedicationId |
Unique ID of patient's medication (Required). |
globally unique identifier |
None. |
| MedicationName |
Name of the medication (Read only). |
string |
None. |
| Status |
Status of the refill request (Read only). |
string |
None. |
| RequestDate |
Date of request of refill of medication (Read only). |
string |
None. |
| LastStatusChange |
Last status change date of the refill request (Read only). |
string |
None. |
| PatientComments |
Comments of the patient on refill request. |
string |
None. |
| DoctorComments |
Comments of the doctor on refill request. |
string |
None. |
Response Formats
application/json, text/json
{
"MedicationRefillRequestId": "b3269eea-dd42-4b9e-829f-9de25d4ea0e5",
"PatientMedicationId": "4e4532f2-9172-4aad-bace-2aeba2123f8b",
"MedicationName": "sample string 3",
"Status": "sample string 4",
"RequestDate": "sample string 5",
"LastStatusChange": "sample string 6",
"PatientComments": "sample string 7",
"DoctorComments": "sample string 8"
}
application/xml, text/xml
<MedicationRefillRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientMedications"> <DoctorComments>sample string 8</DoctorComments> <LastStatusChange>sample string 6</LastStatusChange> <MedicationName>sample string 3</MedicationName> <MedicationRefillRequestId>b3269eea-dd42-4b9e-829f-9de25d4ea0e5</MedicationRefillRequestId> <PatientComments>sample string 7</PatientComments> <PatientMedicationId>4e4532f2-9172-4aad-bace-2aeba2123f8b</PatientMedicationId> <RequestDate>sample string 5</RequestDate> <Status>sample string 4</Status> </MedicationRefillRequestModel>