POST api/Properties/SavePropertyRentalBidAcceptOrReject
Request Information
URI Parameters
None.
Body Parameters
RentalPropertyBidAcceptORReject| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationID | integer |
None. |
|
| RentPropertyBidID | integer |
None. |
|
| RentPropertyID | integer |
None. |
|
| PropertyBidStatusID | integer |
None. |
|
| RentPropertyManagerID | integer |
None. |
|
| Manager_ReasonID | integer |
None. |
|
| UpdatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocationID": 1,
"RentPropertyBidID": 2,
"RentPropertyID": 3,
"PropertyBidStatusID": 4,
"RentPropertyManagerID": 5,
"Manager_ReasonID": 6,
"UpdatedBy": 7
}
application/xml, text/xml
Sample:
<RentalPropertyBidAcceptORReject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel"> <LocationID>1</LocationID> <Manager_ReasonID>6</Manager_ReasonID> <PropertyBidStatusID>4</PropertyBidStatusID> <RentPropertyBidID>2</RentPropertyBidID> <RentPropertyID>3</RentPropertyID> <RentPropertyManagerID>5</RentPropertyManagerID> <UpdatedBy>7</UpdatedBy> </RentalPropertyBidAcceptORReject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ResultStatus |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics"> <Data /> <Message>sample string 1</Message> <Status>Success</Status> </Result>