POST api/notifications/refills/{refillId}/approveOnBehalfOf/{onBehalfOf}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| refillId | integer |
Required |
|
| onBehalfOf | integer |
Required |
Body Parameters
ApproveRefillRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Refills | integer |
None. |
|
| Comment | string |
String length: inclusive between 0 and 500 |
|
| EffectiveDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Refills": 1,
"Comment": "sample string 2",
"EffectiveDate": "2025-12-16T04:27:07.0211218+00:00"
}
application/xml, text/xml
Sample:
<ApproveRefillRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DoseSpot.UI.API.DataContracts._13"> <Comment>sample string 2</Comment> <EffectiveDate>2025-12-16T04:27:07.0211218+00:00</EffectiveDate> <Refills>1</Refills> </ApproveRefillRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IdentifierResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Result | Result |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Result": {
"ResultCode": "sample string 1",
"ResultDescription": "sample string 2"
}
}
application/xml, text/xml
Sample:
<IdentifierResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DoseSpot.UI.API.DataContracts._13">
<Result>
<ResultCode>sample string 1</ResultCode>
<ResultDescription>sample string 2</ResultDescription>
</Result>
<Id>1</Id>
</IdentifierResponse>