POST api/Properties/SaveAdditionalAddShop

Request Information

URI Parameters

None.

Body Parameters

SaveAdditionalAddShop
NameDescriptionTypeAdditional 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": "43a6f800-1e32-4f83-b7f8-d66e633d52df",
  "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>43a6f800-1e32-4f83-b7f8-d66e633d52df</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
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>