GET api/information/shops/{token}

Provides a list of shops, given a group token.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
token

DdD Group Token

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

List of shops with 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>