POST api/PayrollProcessHead/CancelMonthlyProcess
Request Information
URI Parameters
None.
Body Parameters
MonthlyProcessCancelVM| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
Required |
|
| YearId | integer |
Required |
|
| Month | MonthsLookupVM |
Required |
|
| CancelRemarks | string |
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:
{
"BookId": 1,
"YearId": 2,
"Month": {
"MonthId": 1,
"MonthName": "sample string 2"
},
"CancelRemarks": "sample string 3",
"CancelUser": 4,
"CancelIp": "sample string 5"
}
application/xml, text/xml
Sample:
<MonthlyProcessCancelVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<BookId>1</BookId>
<CancelIp>sample string 5</CancelIp>
<CancelRemarks>sample string 3</CancelRemarks>
<CancelUser>4</CancelUser>
<Month>
<MonthId>1</MonthId>
<MonthName>sample string 2</MonthName>
</Month>
<YearId>2</YearId>
</MonthlyProcessCancelVM>
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.