POST api/EstRentDueProcess/Save
Request Information
URI Parameters
None.
Body Parameters
EstRentDueProcessSaveVM| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
Required |
|
| ProcessDate | string |
Required |
|
| BookTypeId | integer |
Required |
|
| FinYearId | integer |
Required |
|
| ProcessNo | string |
Required string length: inclusive between 0 and 20 |
|
| Month | MonthsLookupVM |
Required |
|
| Year | integer |
Required |
|
| Remarks | string |
string length: inclusive between 0 and 200 |
|
| CreateUser | integer |
Required |
|
| CreateIp | string |
Required string length: inclusive between 0 and 20 |
Request Formats
application/json, text/json
Sample:
{
"BookId": 1,
"ProcessDate": "sample string 2",
"BookTypeId": 3,
"FinYearId": 4,
"ProcessNo": "sample string 5",
"Month": {
"MonthId": 1,
"MonthName": "sample string 2"
},
"Year": 6,
"Remarks": "sample string 7",
"CreateUser": 8,
"CreateIp": "sample string 9"
}
application/xml, text/xml
Sample:
<EstRentDueProcessSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<BookId>1</BookId>
<BookTypeId>3</BookTypeId>
<CreateIp>sample string 9</CreateIp>
<CreateUser>8</CreateUser>
<FinYearId>4</FinYearId>
<Month>
<MonthId>1</MonthId>
<MonthName>sample string 2</MonthName>
</Month>
<ProcessDate>sample string 2</ProcessDate>
<ProcessNo>sample string 5</ProcessNo>
<Remarks>sample string 7</Remarks>
<Year>6</Year>
</EstRentDueProcessSaveVM>
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.