GET api/webshop/shops

Provides a list of the participating shops in the webshop.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Shop
NameDescriptionTypeAdditional information
ShopId

The shop id.

integer

None.

Description

The shop desription.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShopId": 1,
    "Description": "sample string 2"
  },
  {
    "ShopId": 1,
    "Description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfShopInfoDescription xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicAPI.Models">
  <ShopInfoDescription>
    <Description>sample string 2</Description>
    <ShopId>1</ShopId>
  </ShopInfoDescription>
  <ShopInfoDescription>
    <Description>sample string 2</Description>
    <ShopId>1</ShopId>
  </ShopInfoDescription>
</ArrayOfShopInfoDescription>