POST api/eftvouchers/approve
Request Information
URI Parameters
None.
Body Parameters
EFTVoucherApproveRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RequestId | integer |
Required |
|
| ApprovedBy | string |
Required |
|
| ActualAmount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"RequestId": 1,
"ApprovedBy": "sample string 2",
"ActualAmount": 1.1
}
application/xml, text/xml
Sample:
<EFTVoucherApproveRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models"> <ActualAmount>1.1</ActualAmount> <ApprovedBy>sample string 2</ApprovedBy> <RequestId>1</RequestId> </EFTVoucherApproveRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
EFTVoucherStatusResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<EFTVoucherStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models"> <Message>sample string 2</Message> <Success>true</Success> </EFTVoucherStatusResponse>