POST api/EstRentDue/Delete
Request Information
URI Parameters
None.
Body Parameters
EstRentDueDeleteVM| Name | Description | Type | Additional information |
|---|---|---|---|
| BookId | integer |
Required |
|
| DueId | integer |
Required |
|
| Tenant | EstTenantLookupVM |
Required |
|
| RentProperty | EstRentPropertyLookupVM |
Required |
|
| Months | MonthsLookupVM |
Required |
|
| Year | integer |
Required |
|
| DeleteUser | integer |
Required |
|
| DeleteIp | string |
Required String length: inclusive between 0 and 20 |
Request Formats
application/json, text/json
Sample:
{
"BookId": 1,
"DueId": 2,
"Tenant": {
"TenantId": 1,
"TenantName": "sample string 2",
"Prefix": {
"PrefixId": 1,
"PrefixName": "sample string 2"
}
},
"RentProperty": {
"PropertyId": 1,
"PropertyName": "sample string 2"
},
"Months": {
"MonthId": 1,
"MonthName": "sample string 2"
},
"Year": 3,
"DeleteUser": 4,
"DeleteIp": "sample string 5"
}
application/xml, text/xml
Sample:
<EstRentDueDeleteVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<BookId>1</BookId>
<DeleteIp>sample string 5</DeleteIp>
<DeleteUser>4</DeleteUser>
<DueId>2</DueId>
<Months>
<MonthId>1</MonthId>
<MonthName>sample string 2</MonthName>
</Months>
<RentProperty>
<PropertyId>1</PropertyId>
<PropertyName>sample string 2</PropertyName>
</RentProperty>
<Tenant>
<Prefix>
<PrefixId>1</PrefixId>
<PrefixName>sample string 2</PrefixName>
</Prefix>
<TenantId>1</TenantId>
<TenantName>sample string 2</TenantName>
</Tenant>
<Year>3</Year>
</EstRentDueDeleteVM>
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.