PUT Api/propertyManagement/Put?parcel_id={parcel_id}&userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| parcel_id | integer |
Required |
|
| userId | string |
Required |
Body Parameters
VW_PROPERTY_MANAGEMENT| Name | Description | Type | Additional information |
|---|---|---|---|
| PARCEL_ID | integer |
None. |
|
| PARCEL_NR | integer |
None. |
|
| PARCEL_LTR | string |
None. |
|
| PARCEL_KEY | string |
None. |
|
| IS_REMNANT | boolean |
None. |
|
| REMNANT_AREA | decimal number |
None. |
|
| REMNANT_AREA_TYPE | string |
None. |
|
| REMNANT_AMT | decimal number |
None. |
|
| IS_FOR_SALE | boolean |
None. |
|
| SOLD_AMT | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"PARCEL_ID": 1,
"PARCEL_NR": 2,
"PARCEL_LTR": "sample string 3",
"PARCEL_KEY": "sample string 4",
"IS_REMNANT": true,
"REMNANT_AREA": 1.0,
"REMNANT_AREA_TYPE": "sample string 6",
"REMNANT_AMT": 1.0,
"IS_FOR_SALE": true,
"SOLD_AMT": 1.0
}
text/xml
Sample:
<VW_PROPERTY_MANAGEMENT xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EF"> <IS_FOR_SALE>true</IS_FOR_SALE> <IS_REMNANT>true</IS_REMNANT> <PARCEL_ID>1</PARCEL_ID> <PARCEL_KEY>sample string 4</PARCEL_KEY> <PARCEL_LTR>sample string 3</PARCEL_LTR> <PARCEL_NR>2</PARCEL_NR> <REMNANT_AMT>1</REMNANT_AMT> <REMNANT_AREA>1</REMNANT_AREA> <REMNANT_AREA_TYPE>sample string 6</REMNANT_AREA_TYPE> <SOLD_AMT>1</SOLD_AMT> </VW_PROPERTY_MANAGEMENT>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |