POST api/Properties/SavePropertyInterior

Request Information

URI Parameters

None.

Body Parameters

Collection of SavePropertyInterior
NameDescriptionTypeAdditional information
LocationID

integer

None.

Descriptions

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "LocationID": 1,
    "Descriptions": "sample string 2"
  },
  {
    "LocationID": 1,
    "Descriptions": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSavePropertyInterior xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel.PropertieViews">
  <SavePropertyInterior>
    <Descriptions>sample string 2</Descriptions>
    <LocationID>1</LocationID>
  </SavePropertyInterior>
  <SavePropertyInterior>
    <Descriptions>sample string 2</Descriptions>
    <LocationID>1</LocationID>
  </SavePropertyInterior>
</ArrayOfSavePropertyInterior>

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>