POST api/Properties/SavePropertyNeighbourhoodDetail

Request Information

URI Parameters

None.

Body Parameters

PropertyNeighborhoodDetail
NameDescriptionTypeAdditional information
NeighborhoodID

Collection of SelectListItem

None.

ROWID

globally unique identifier

None.

Detail_ID

integer

None.

Neighborhood_ID

integer

None.

Description

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:
{
  "NeighborhoodID": [
    {
      "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": "2ab3d250-acb5-401a-a027-b6f13cd699c7",
  "Detail_ID": 1,
  "Neighborhood_ID": 1,
  "Description": "sample string 2",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedDate": "2026-04-06T21:36:35.5766097-05:00",
  "CreatedBy": "fd827b85-f0ca-458d-a33f-9944d5411ab2",
  "UpdatedDate": "2026-04-06T21:36:35.5766097-05:00",
  "UpdatedBy": "521b31b4-8b9d-4c08-940e-9d23bf7c44e5",
  "ApproveDate": "2026-04-06T21:36:35.5766097-05:00",
  "ApprovedBy": "4c8ad4e0-240b-477d-8150-1e12ccc636b7",
  "CurrentStatus": 1,
  "Notes": "sample string 3"
}

application/xml, text/xml

Sample:
<PropertyNeighborhoodDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <ApproveDate>2026-04-06T21:36:35.5766097-05:00</ApproveDate>
  <ApprovedBy>4c8ad4e0-240b-477d-8150-1e12ccc636b7</ApprovedBy>
  <CreatedBy>fd827b85-f0ca-458d-a33f-9944d5411ab2</CreatedBy>
  <CreatedDate>2026-04-06T21:36:35.5766097-05:00</CreatedDate>
  <CurrentStatus>1</CurrentStatus>
  <Description>sample string 2</Description>
  <Detail_ID>1</Detail_ID>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <NeighborhoodID 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>
  </NeighborhoodID>
  <Neighborhood_ID>1</Neighborhood_ID>
  <Notes>sample string 3</Notes>
  <ROWID>2ab3d250-acb5-401a-a027-b6f13cd699c7</ROWID>
  <UpdatedBy>521b31b4-8b9d-4c08-940e-9d23bf7c44e5</UpdatedBy>
  <UpdatedDate>2026-04-06T21:36:35.5766097-05:00</UpdatedDate>
</PropertyNeighborhoodDetail>

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>