POST Catalog/Brands

Request Information

URI Parameters

None.

Body Parameters

GetBrandsRequest
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
TotalCount

integer

None.

Brands

Collection of Brand

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "Brands": [
    {
      "ID": 1,
      "Created": "2025-12-06T09:16:21.5640437+01:00",
      "Disabled": "2025-12-06T09:16:21.5640437+01:00",
      "Name": "sample string 3",
      "Description": "sample string 4"
    },
    {
      "ID": 1,
      "Created": "2025-12-06T09:16:21.5640437+01:00",
      "Disabled": "2025-12-06T09:16:21.5640437+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-06T09:16:21.5640437+01:00</Created>
      <Description>sample string 4</Description>
      <Disabled>2025-12-06T09:16:21.5640437+01:00</Disabled>
      <ID>1</ID>
      <Name>sample string 3</Name>
    </Brand>
    <Brand>
      <Created>2025-12-06T09:16:21.5640437+01:00</Created>
      <Description>sample string 4</Description>
      <Disabled>2025-12-06T09:16:21.5640437+01:00</Disabled>
      <ID>1</ID>
      <Name>sample string 3</Name>
    </Brand>
  </Brands>
  <TotalCount>1</TotalCount>
</BrandsView>