POST api/Properties/SaveAdditionalAddShopOld
Request Information
URI Parameters
None.
Body Parameters
SaveAdditionalAddShop| Name | Description | Type | Additional information |
|---|---|---|---|
| ROWID | globally unique identifier |
None. |
|
| LocationID | integer |
None. |
|
| UserID | integer |
None. |
|
| shopname | string |
None. |
|
| ShopArea | string |
None. |
|
| BlackoutPlans | integer |
None. |
|
| blackoutothertext | string |
None. |
|
| bathroom | boolean |
None. |
|
| Floors | integer |
None. |
|
| shopfloor | integer |
None. |
|
| Shoptext | string |
None. |
|
| adminoffice | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ROWID": "798f6d5c-c662-4891-996f-e5a854734aad",
"LocationID": 1,
"UserID": 1,
"shopname": "sample string 1",
"ShopArea": "sample string 2",
"BlackoutPlans": 1,
"blackoutothertext": "sample string 3",
"bathroom": true,
"Floors": 1,
"shopfloor": 1,
"Shoptext": "sample string 4",
"adminoffice": true
}
application/xml, text/xml
Sample:
<SaveAdditionalAddShop xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel.PropertieViews"> <BlackoutPlans>1</BlackoutPlans> <Floors>1</Floors> <LocationID>1</LocationID> <ROWID>798f6d5c-c662-4891-996f-e5a854734aad</ROWID> <ShopArea>sample string 2</ShopArea> <Shoptext>sample string 4</Shoptext> <UserID>1</UserID> <adminoffice>true</adminoffice> <bathroom>true</bathroom> <blackoutothertext>sample string 3</blackoutothertext> <shopfloor>1</shopfloor> <shopname>sample string 1</shopname> </SaveAdditionalAddShop>
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>