POST api/Properties/SaveAdditionalAddInterior
Request Information
URI Parameters
None.
Body Parameters
SaveAdditionalAddInterior| Name | Description | Type | Additional information |
|---|---|---|---|
| ROWID | globally unique identifier |
None. |
|
| DBNo | integer |
None. |
|
| AppNo | integer |
None. |
|
| TempAddInteriorID | integer |
None. |
|
| LocationID | integer |
None. |
|
| UserID | integer |
None. |
|
| UserProfileID | integer |
None. |
|
| IsKitchen | boolean |
None. |
|
| Kitchens | integer |
None. |
|
| IsLivingRoom | boolean |
None. |
|
| LivingRooms | integer |
None. |
|
| IsDiningRoom | boolean |
None. |
|
| DiningRooms | integer |
None. |
|
| IsDrawingRoom | boolean |
None. |
|
| DrawingRooms | integer |
None. |
|
| IsStore | boolean |
None. |
|
| Stores | integer |
None. |
|
| Flooring | integer |
None. |
|
| FlooringOther | string |
None. |
|
| IsLounge | boolean |
None. |
|
| Lounges | integer |
None. |
|
| IsLaundary | boolean |
None. |
|
| Laundaries | integer |
None. |
|
| IsPantry | boolean |
None. |
|
| IsStudyRoom | boolean |
None. |
|
| IsOfficeRoom | boolean |
None. |
|
| Pantries | integer |
None. |
|
| StudyRooms | integer |
None. |
|
| OfficeRooms | integer |
None. |
|
| isActive | boolean |
None. |
|
| isDeleted | boolean |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
|
| LogId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ROWID": "81b2de46-c814-40ee-ae31-b5d6873d5c8a",
"DBNo": 1,
"AppNo": 1,
"TempAddInteriorID": 1,
"LocationID": 1,
"UserID": 1,
"UserProfileID": 1,
"IsKitchen": true,
"Kitchens": 1,
"IsLivingRoom": true,
"LivingRooms": 1,
"IsDiningRoom": true,
"DiningRooms": 1,
"IsDrawingRoom": true,
"DrawingRooms": 1,
"IsStore": true,
"Stores": 1,
"Flooring": 1,
"FlooringOther": "sample string 1",
"IsLounge": true,
"Lounges": 1,
"IsLaundary": true,
"Laundaries": 1,
"IsPantry": true,
"IsStudyRoom": true,
"IsOfficeRoom": true,
"Pantries": 1,
"StudyRooms": 1,
"OfficeRooms": 1,
"isActive": true,
"isDeleted": true,
"CreatedBy": 2,
"UpdatedBy": 1,
"LogId": 1
}
application/xml, text/xml
Sample:
<SaveAdditionalAddInterior xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel.PropertieViews"> <AppNo>1</AppNo> <CreatedBy>2</CreatedBy> <DBNo>1</DBNo> <DiningRooms>1</DiningRooms> <DrawingRooms>1</DrawingRooms> <Flooring>1</Flooring> <FlooringOther>sample string 1</FlooringOther> <IsDiningRoom>true</IsDiningRoom> <IsDrawingRoom>true</IsDrawingRoom> <IsKitchen>true</IsKitchen> <IsLaundary>true</IsLaundary> <IsLivingRoom>true</IsLivingRoom> <IsLounge>true</IsLounge> <IsOfficeRoom>true</IsOfficeRoom> <IsPantry>true</IsPantry> <IsStore>true</IsStore> <IsStudyRoom>true</IsStudyRoom> <Kitchens>1</Kitchens> <Laundaries>1</Laundaries> <LivingRooms>1</LivingRooms> <LocationID>1</LocationID> <LogId>1</LogId> <Lounges>1</Lounges> <OfficeRooms>1</OfficeRooms> <Pantries>1</Pantries> <ROWID>81b2de46-c814-40ee-ae31-b5d6873d5c8a</ROWID> <Stores>1</Stores> <StudyRooms>1</StudyRooms> <TempAddInteriorID>1</TempAddInteriorID> <UpdatedBy>1</UpdatedBy> <UserID>1</UserID> <UserProfileID>1</UserProfileID> <isActive>true</isActive> <isDeleted>true</isDeleted> </SaveAdditionalAddInterior>
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>