Fields when send to the api inside a request.
Field | Type | Description |
---|---|---|
name | [Language: String] | Translated category name |
description | [Language: String] | Description of this category |
active | Bool | A boolean value |
only_order_in_store | Bool | Whether this product can only get ordered in the store with a separate UI for the shop employees, and not in the public webshop |
seo | company.SeoData | Optional. The category's webpage search engine metatags |
Fields when returned by the api in a response.
Field | Type | Description |
---|---|---|
name | [Language: String] | Translated category name |
description | [Language: String] | Description of this category |
active | Bool | A boolean value |
only_order_in_store | Bool | Whether this product can only get ordered in the store with a separate UI for the shop employees, and not in the public webshop |
id | Int | ID of the category |
banner | Image? | Nullable. |
seo | company.SeoData | Optional. The category's webpage search engine metatags |
When used inside a request.
{
"name": "Aliza Gerhold",
"description": {
"nl": "...",
"en": "...",
"fr": "..."
},
"active": false,
"only_order_in_store": true,
"seo": {
"title": {
"en": "Mollitia illo aut et et laboriosam voluptatem enim alias incidunt quod."
},
"description": {
"en": "Eaque eaque magni sint fugit aut laudantium. Voluptate et accusantium doloribus laboriosam qui voluptatem. Est sed animi aut."
},
"url": {
"en": "https://www.romaguera.com/consequatur-saepe-velit-distinctio-eum-magnam"
}
}
}
When returned in a response.
{
"name": "Mrs. Heather Adams",
"description": {
"nl": "...",
"en": "...",
"fr": "..."
},
"active": false,
"only_order_in_store": false,
"id": 18,
"banner": {
"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": true
},
"seo": {
"title": {
"en": "Nesciunt et cumque consectetur incidunt illum."
},
"description": {
"en": "Est non explicabo animi sit consequuntur esse. Et dicta in sit asperiores eum. Et similique repudiandae id nesciunt molestiae molestiae. Modi quaerat et ad."
},
"url": {
"en": "http://pacocha.com/"
}
}
}