Returns a list of brands divided by groups
REQUSET:
TYPE:
GET
PATH:
api.xyz.ru/v1/cnt/brands
Response cashed on a device for 24-hour
All parameters are required, except "icon_url"
Status: 200 OK
RESPONSE:
[
{
"id": 1,
"group_name": "Popular", // Категория бренда
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 0,
"brands": [
{
"id": 2,
"name": "Adidas", // Название бренда
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 2
},
{
"id": 4,
"name": "Nike",
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 2
},
{
"id": 6,
"name": "Reebok",
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 2
}, ...
]
},
{
"id": 2,
"group_name": "Best choice",
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 1,
"brands": [
{
"id": 2,
"name": "Zara",
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 2
},
{
"id": 4,
"name": "Salomon",
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 4
},
{
"id": 6,
"name": "Hoka one one",
"icon_url": "https://quelle.ru/icon.svg",
"order_num": 5
}, ...
]
}
]