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": "7b2f6ba6-32cf-4c53-81be-42870e6bc6c7",
"status": "sample string 2",
"lastStatusChange": "2026-08-28T05:33:11.9641328+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>7b2f6ba6-32cf-4c53-81be-42870e6bc6c7</Id> <LastStatusChange>2026-08-28T05:33:11.9641328+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": "d4886b1b-597b-4bb2-b3e1-131770fe6c74",
"status": "sample string 2",
"lastStatusChange": "2026-08-28T05:33:11.9641328+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>d4886b1b-597b-4bb2-b3e1-131770fe6c74</Id> <LastStatusChange>2026-08-28T05:33:11.9641328+00:00</LastStatusChange> <Status>sample string 2</Status> </MedicationRefillRequestResultModel>