POST api/Properties/SavePropertyExteriorFeatures

Request Information

URI Parameters

None.

Body Parameters

Collection of PR_Exterior_Features
NameDescriptionTypeAdditional information
ROWID

globally unique identifier

None.

Exterior_ID

integer

None.

Property_ID

integer

None.

Header_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:
[
  {
    "ROWID": "af668a82-a2dd-4b44-a9f5-ff2003f502d4",
    "Exterior_ID": 1,
    "Property_ID": 1,
    "Header_ID": 1,
    "Exterior_Name": "sample string 2",
    "IsActive": true,
    "IsDeleted": true,
    "CreatedDate": "2026-04-06T21:34:29.2436005-05:00",
    "CreatedBy": "c251d84c-7f43-43c0-bfc3-f93753157b14",
    "UpdatedDate": "2026-04-06T21:34:29.2436005-05:00",
    "UpdatedBy": "a2343b75-2e48-4ad6-b959-a3feb0417c40",
    "ApproveDate": "2026-04-06T21:34:29.2456185-05:00",
    "ApprovedBy": "f23fa916-bd89-4cce-870f-25649c5aec76",
    "CurrentStatus": 1,
    "Notes": "sample string 3"
  },
  {
    "ROWID": "af668a82-a2dd-4b44-a9f5-ff2003f502d4",
    "Exterior_ID": 1,
    "Property_ID": 1,
    "Header_ID": 1,
    "Exterior_Name": "sample string 2",
    "IsActive": true,
    "IsDeleted": true,
    "CreatedDate": "2026-04-06T21:34:29.2436005-05:00",
    "CreatedBy": "c251d84c-7f43-43c0-bfc3-f93753157b14",
    "UpdatedDate": "2026-04-06T21:34:29.2436005-05:00",
    "UpdatedBy": "a2343b75-2e48-4ad6-b959-a3feb0417c40",
    "ApproveDate": "2026-04-06T21:34:29.2456185-05:00",
    "ApprovedBy": "f23fa916-bd89-4cce-870f-25649c5aec76",
    "CurrentStatus": 1,
    "Notes": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPR_Exterior_Features xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Entities">
  <PR_Exterior_Features>
    <ApproveDate>2026-04-06T21:34:29.2456185-05:00</ApproveDate>
    <ApprovedBy>f23fa916-bd89-4cce-870f-25649c5aec76</ApprovedBy>
    <CreatedBy>c251d84c-7f43-43c0-bfc3-f93753157b14</CreatedBy>
    <CreatedDate>2026-04-06T21:34:29.2436005-05:00</CreatedDate>
    <CurrentStatus>1</CurrentStatus>
    <Exterior_ID>1</Exterior_ID>
    <Exterior_Name>sample string 2</Exterior_Name>
    <Header_ID>1</Header_ID>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <Notes>sample string 3</Notes>
    <Property_ID>1</Property_ID>
    <ROWID>af668a82-a2dd-4b44-a9f5-ff2003f502d4</ROWID>
    <UpdatedBy>a2343b75-2e48-4ad6-b959-a3feb0417c40</UpdatedBy>
    <UpdatedDate>2026-04-06T21:34:29.2436005-05:00</UpdatedDate>
  </PR_Exterior_Features>
  <PR_Exterior_Features>
    <ApproveDate>2026-04-06T21:34:29.2456185-05:00</ApproveDate>
    <ApprovedBy>f23fa916-bd89-4cce-870f-25649c5aec76</ApprovedBy>
    <CreatedBy>c251d84c-7f43-43c0-bfc3-f93753157b14</CreatedBy>
    <CreatedDate>2026-04-06T21:34:29.2436005-05:00</CreatedDate>
    <CurrentStatus>1</CurrentStatus>
    <Exterior_ID>1</Exterior_ID>
    <Exterior_Name>sample string 2</Exterior_Name>
    <Header_ID>1</Header_ID>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <Notes>sample string 3</Notes>
    <Property_ID>1</Property_ID>
    <ROWID>af668a82-a2dd-4b44-a9f5-ff2003f502d4</ROWID>
    <UpdatedBy>a2343b75-2e48-4ad6-b959-a3feb0417c40</UpdatedBy>
    <UpdatedDate>2026-04-06T21:34:29.2436005-05:00</UpdatedDate>
  </PR_Exterior_Features>
</ArrayOfPR_Exterior_Features>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional 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>