POST api/PFLoanRepayProcess/Cancel
Request Information
URI Parameters
None.
Body Parameters
PFLoanRepayProcessCancelVM| Name | Description | Type | Additional information |
|---|---|---|---|
| ProcessId | integer |
Required |
|
| Months | MonthsLookupVM |
Required |
|
| Year | integer |
Required |
|
| CancelRemarks | string |
Required String length: inclusive between 0 and 100 |
|
| CancelUser | integer |
Required |
|
| CancelIp | string |
Required String length: inclusive between 0 and 20 |
Request Formats
application/json, text/json
Sample:
{
"ProcessId": 1,
"Months": {
"MonthId": 1,
"MonthName": "sample string 2"
},
"Year": 2,
"CancelRemarks": "sample string 3",
"CancelUser": 4,
"CancelIp": "sample string 5"
}
application/xml, text/xml
Sample:
<PFLoanRepayProcessCancelVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<CancelIp>sample string 5</CancelIp>
<CancelRemarks>sample string 3</CancelRemarks>
<CancelUser>4</CancelUser>
<Months>
<MonthId>1</MonthId>
<MonthName>sample string 2</MonthName>
</Months>
<ProcessId>1</ProcessId>
<Year>2</Year>
</PFLoanRepayProcessCancelVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.