POST api/Properties/SaveAdditionalAddAppartment

Request Information

URI Parameters

None.

Body Parameters

SaveAdditionalAddAppartmentModel
NameDescriptionTypeAdditional information
DBNo

integer

None.

AppNo

integer

None.

TempAddApartmentID

integer

None.

TempLocationID

integer

None.

UserProfileID

integer

None.

BlackoutPlans

integer

None.

blackoutothertext

string

None.

Bedrooms

integer

None.

Bathrooms

integer

None.

IsServantResident

boolean

None.

SRBedrooms

integer

None.

SRBathrooms

integer

None.

IsFloor

boolean

None.

Floors

integer

None.

apartmentstorage

integer

None.

Storagetext

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "DBNo": 1,
  "AppNo": 1,
  "TempAddApartmentID": 1,
  "TempLocationID": 1,
  "UserProfileID": 2,
  "BlackoutPlans": 1,
  "blackoutothertext": "sample string 3",
  "Bedrooms": 1,
  "Bathrooms": 1,
  "IsServantResident": true,
  "SRBedrooms": 1,
  "SRBathrooms": 1,
  "IsFloor": true,
  "Floors": 1,
  "apartmentstorage": 1,
  "Storagetext": "sample string 4",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 5,
  "UpdatedBy": 1
}

application/xml, text/xml

Sample:
<SaveAdditionalAddAppartmentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel.PropertieViews">
  <AppNo>1</AppNo>
  <Bathrooms>1</Bathrooms>
  <Bedrooms>1</Bedrooms>
  <BlackoutPlans>1</BlackoutPlans>
  <CreatedBy>5</CreatedBy>
  <DBNo>1</DBNo>
  <Floors>1</Floors>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <IsFloor>true</IsFloor>
  <IsServantResident>true</IsServantResident>
  <SRBathrooms>1</SRBathrooms>
  <SRBedrooms>1</SRBedrooms>
  <Storagetext>sample string 4</Storagetext>
  <TempAddApartmentID>1</TempAddApartmentID>
  <TempLocationID>1</TempLocationID>
  <UpdatedBy>1</UpdatedBy>
  <UserProfileID>2</UserProfileID>
  <apartmentstorage>1</apartmentstorage>
  <blackoutothertext>sample string 3</blackoutothertext>
</SaveAdditionalAddAppartmentModel>

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>