POST Catalog/Brands
Request Information
URI Parameters
None.
Body Parameters
GetBrandsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Filter | BrandFilter |
None. |
|
| Range | AdminFilterRange |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BrandsView| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Brands | Collection of Brand |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"Brands": [
{
"ID": 1,
"Created": "2025-12-06T05:42:13.0045274+01:00",
"Disabled": "2025-12-06T05:42:13.0045274+01:00",
"Name": "sample string 3",
"Description": "sample string 4"
},
{
"ID": 1,
"Created": "2025-12-06T05:42:13.0045274+01:00",
"Disabled": "2025-12-06T05:42:13.0045274+01:00",
"Name": "sample string 3",
"Description": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<BrandsView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Catalog">
<Brands>
<Brand>
<Created>2025-12-06T05:42:13.0045274+01:00</Created>
<Description>sample string 4</Description>
<Disabled>2025-12-06T05:42:13.0045274+01:00</Disabled>
<ID>1</ID>
<Name>sample string 3</Name>
</Brand>
<Brand>
<Created>2025-12-06T05:42:13.0045274+01:00</Created>
<Description>sample string 4</Description>
<Disabled>2025-12-06T05:42:13.0045274+01:00</Disabled>
<ID>1</ID>
<Name>sample string 3</Name>
</Brand>
</Brands>
<TotalCount>1</TotalCount>
</BrandsView>