Field | Type | Description |
---|---|---|
name | String | Category group name |
category_ids | [Int] | Ids of the categories in this group |
id | Int | A ID for this category group. |
image | Image? | Nullable. |
When used inside a request.
{
"name": "...",
"category_ids": [
17,
13,
18
],
"id": 10,
"image": {
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"white_background": false
}
}
When returned in a response.
{
"name": "...",
"category_ids": [
14,
10,
17
],
"id": 16,
"image": {
"resolutions": [
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
},
{
"src": "https://example.com",
"width": 600,
"height": 350
}
],
"file_id": 18,
"white_background": true
}
}