POST api/MedicationRefillRequests
Creates a new a medication refill or updates an existent medication refill's information.
Request Information
URI Parameters
None.
Body Parameters
MedicationRefillRequestResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Medication refill request ID (Required). |
globally unique identifier |
None. |
| Status |
Status of the medication refill. Status should be (Pending, Approved or Denied) (Required). |
string |
None. |
| LastStatusChange |
Medication refill last status change date. When the medication refill is created for first time the created date is equals to last status change date. |
date |
None. |
| DoctorComments |
Comments by doctor. |
string |
None. |
Request Formats
application/json, text/json
{
"id": "a920e725-1393-48cf-9659-68f44ca141fc",
"status": "sample string 2",
"lastStatusChange": "2026-07-14T01:50:02.0341983+00:00",
"doctorComments": "sample string 3"
}
application/xml, text/xml
<MedicationRefillRequestResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.MedicationRefillRequests"> <DoctorComments>sample string 3</DoctorComments> <Id>a920e725-1393-48cf-9659-68f44ca141fc</Id> <LastStatusChange>2026-07-14T01:50:02.0341983+00:00</LastStatusChange> <Status>sample string 2</Status> </MedicationRefillRequestResultModel>
application/x-www-form-urlencoded
Response Information
Resource Description
MedicationRefillRequestResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Medication refill request ID (Required). |
globally unique identifier |
None. |
| Status |
Status of the medication refill. Status should be (Pending, Approved or Denied) (Required). |
string |
None. |
| LastStatusChange |
Medication refill last status change date. When the medication refill is created for first time the created date is equals to last status change date. |
date |
None. |
| DoctorComments |
Comments by doctor. |
string |
None. |
Response Formats
application/json, text/json
{
"id": "56624349-ef89-42a8-844e-7c7e898d98b4",
"status": "sample string 2",
"lastStatusChange": "2026-07-14T01:50:02.0445079+00:00",
"doctorComments": "sample string 3"
}
application/xml, text/xml
<MedicationRefillRequestResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.MedicationRefillRequests"> <DoctorComments>sample string 3</DoctorComments> <Id>56624349-ef89-42a8-844e-7c7e898d98b4</Id> <LastStatusChange>2026-07-14T01:50:02.0445079+00:00</LastStatusChange> <Status>sample string 2</Status> </MedicationRefillRequestResultModel>