GET v1/Shops/{shopId}/Parameters

Get all Shop's Parameters.

Request Information

Requires Authorization!

URI Parameters

NameDescriptionTypeAdditional information
shopId

The id of the shop.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

A collection of Shop's Parameters.


Collection of ShopParameter
NameDescriptionTypeAdditional information
Id

Gets or sets the id

integer

None.

ShopId

Gets or sets the Shop's id

integer

None.

Key

string

None.

Value

string

None.

DataType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ShopId": 2,
    "Key": "sample string 3",
    "Value": "sample string 4",
    "DataType": "sample string 5"
  },
  {
    "Id": 1,
    "ShopId": 2,
    "Key": "sample string 3",
    "Value": "sample string 4",
    "DataType": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfShopParameter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ShopParameter>
    <Key>sample string 3</Key>
    <Value>sample string 4</Value>
    <DataType>sample string 5</DataType>
    <Id>1</Id>
    <ShopId>2</ShopId>
  </ShopParameter>
  <ShopParameter>
    <Key>sample string 3</Key>
    <Value>sample string 4</Value>
    <DataType>sample string 5</DataType>
    <Id>1</Id>
    <ShopId>2</ShopId>
  </ShopParameter>
</ArrayOfShopParameter>