POST Api/Shop/GetShopParameters

Request Information

URI Parameters

None.

Body Parameters

GetShopModel
NameDescriptionTypeAdditional information
ShopId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ShopId": "sample string 1"
}

application/xml, text/xml

Sample:
<GetShopModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models">
  <ShopId>sample string 1</ShopId>
</GetShopModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ShopParameter
NameDescriptionTypeAdditional information
ParameterId

string

None.

ShopId

string

None.

Description

string

None.

Value

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ParameterId": "sample string 1",
    "ShopId": "sample string 2",
    "Description": "sample string 3",
    "Value": "sample string 4"
  },
  {
    "ParameterId": "sample string 1",
    "ShopId": "sample string 2",
    "Description": "sample string 3",
    "Value": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfShopParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Data.Models.Intranet">
  <ShopParameter>
    <Description>sample string 3</Description>
    <ParameterId>sample string 1</ParameterId>
    <ShopId>sample string 2</ShopId>
    <Value>sample string 4</Value>
  </ShopParameter>
  <ShopParameter>
    <Description>sample string 3</Description>
    <ParameterId>sample string 1</ParameterId>
    <ShopId>sample string 2</ShopId>
    <Value>sample string 4</Value>
  </ShopParameter>
</ArrayOfShopParameter>