POST api/Properties/SavePropertyExteriorFeature
Request Information
URI Parameters
None.
Body Parameters
PropertyExteriorFeature| Name | Description | Type | Additional information |
|---|---|---|---|
| PropertyID | Collection of SelectListItem |
None. |
|
| ROWID | globally unique identifier |
None. |
|
| Exterior_ID | integer |
None. |
|
| Property_ID | integer |
None. |
|
| Exterior_Name | string |
None. |
|
| IsActive | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedBy | globally unique identifier |
None. |
|
| UpdatedDate | date |
None. |
|
| UpdatedBy | globally unique identifier |
None. |
|
| ApproveDate | date |
None. |
|
| ApprovedBy | globally unique identifier |
None. |
|
| CurrentStatus | integer |
None. |
|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PropertyID": [
{
"Disabled": true,
"Group": {
"Disabled": true,
"Name": "sample string 2"
},
"Selected": true,
"Text": "sample string 3",
"Value": "sample string 4"
},
{
"Disabled": true,
"Group": {
"Disabled": true,
"Name": "sample string 2"
},
"Selected": true,
"Text": "sample string 3",
"Value": "sample string 4"
}
],
"ROWID": "1db3b62c-ec26-483a-b4e5-65ab9950bf9f",
"Exterior_ID": 1,
"Property_ID": 1,
"Exterior_Name": "sample string 2",
"IsActive": true,
"IsDeleted": true,
"CreatedDate": "2026-04-06T21:34:05.7427903-05:00",
"CreatedBy": "5b049552-9567-4e00-a1db-3ab02586fc91",
"UpdatedDate": "2026-04-06T21:34:05.7427903-05:00",
"UpdatedBy": "d43a6308-07b5-438c-ac71-ffe971854041",
"ApproveDate": "2026-04-06T21:34:05.7427903-05:00",
"ApprovedBy": "a15ee429-bc32-4a0a-9fd4-23c15b187897",
"CurrentStatus": 1,
"Notes": "sample string 3"
}
application/xml, text/xml
Sample:
<PropertyExteriorFeature xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
<ApproveDate>2026-04-06T21:34:05.7427903-05:00</ApproveDate>
<ApprovedBy>a15ee429-bc32-4a0a-9fd4-23c15b187897</ApprovedBy>
<CreatedBy>5b049552-9567-4e00-a1db-3ab02586fc91</CreatedBy>
<CreatedDate>2026-04-06T21:34:05.7427903-05:00</CreatedDate>
<CurrentStatus>1</CurrentStatus>
<Exterior_ID>1</Exterior_ID>
<Exterior_Name>sample string 2</Exterior_Name>
<IsActive>true</IsActive>
<IsDeleted>true</IsDeleted>
<Notes>sample string 3</Notes>
<PropertyID xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Web.Mvc">
<d2p1:SelectListItem>
<d2p1:Disabled>true</d2p1:Disabled>
<d2p1:Group>
<d2p1:Disabled>true</d2p1:Disabled>
<d2p1:Name>sample string 2</d2p1:Name>
</d2p1:Group>
<d2p1:Selected>true</d2p1:Selected>
<d2p1:Text>sample string 3</d2p1:Text>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:SelectListItem>
<d2p1:SelectListItem>
<d2p1:Disabled>true</d2p1:Disabled>
<d2p1:Group>
<d2p1:Disabled>true</d2p1:Disabled>
<d2p1:Name>sample string 2</d2p1:Name>
</d2p1:Group>
<d2p1:Selected>true</d2p1:Selected>
<d2p1:Text>sample string 3</d2p1:Text>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:SelectListItem>
</PropertyID>
<Property_ID>1</Property_ID>
<ROWID>1db3b62c-ec26-483a-b4e5-65ab9950bf9f</ROWID>
<UpdatedBy>d43a6308-07b5-438c-ac71-ffe971854041</UpdatedBy>
<UpdatedDate>2026-04-06T21:34:05.7427903-05:00</UpdatedDate>
</PropertyExteriorFeature>
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>