GET v1/ShopGroup/{shopGroupId}/ProductBrands
Get a list with all available Product Brands, for given shop group.
Request Information
Requires Authorization!
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
shopGroupId |
The id of the shop group. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
A list of the ProductBrand object.
Collection of ProductBrand
Name | Description | Type | Additional information |
---|---|---|---|
Id |
Gets or sets the identifier. |
integer |
None. |
Name |
Gets or sets the name. |
string |
None. |
Enabled | boolean |
None. |
|
LogoFileID |
Gets or sets the ID of the Logo File. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Name": "sample string 2", "Enabled": true, "LogoFileID": 1 }, { "Id": 1, "Name": "sample string 2", "Enabled": true, "LogoFileID": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfProductBrand xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ProductBrand> <Id>1</Id> <Name>sample string 2</Name> <Enabled>true</Enabled> <LogoFileID>1</LogoFileID> </ProductBrand> <ProductBrand> <Id>1</Id> <Name>sample string 2</Name> <Enabled>true</Enabled> <LogoFileID>1</LogoFileID> </ProductBrand> </ArrayOfProductBrand>