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": "Amanda Olson Sr.",
"description": {
"nl": "...",
"en": "...",
"fr": "..."
},
"active": true,
"only_order_in_store": true,
"seo": {
"title": {
"en": "Quaerat minima tempore ab ullam labore itaque provident."
},
"description": {
"en": "Illum ut exercitationem ipsa ratione. Sunt quas dicta voluptatum dolores quod sunt voluptatem. Dicta quo incidunt consectetur aut placeat est. Commodi quia inventore quia quam harum rem ut."
},
"url": {
"en": "http://bashirian.com/"
}
}
}
When returned in a response.
{
"name": "Alice Dickinson",
"description": {
"nl": "...",
"en": "...",
"fr": "..."
},
"active": false,
"only_order_in_store": false,
"id": 16,
"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": false
},
"seo": {
"title": {
"en": "Voluptatem molestiae a reprehenderit nostrum consequatur nulla."
},
"description": {
"en": "Quisquam quasi tempore culpa. Neque quis autem dolor quis libero voluptas natus molestiae. Quos unde dolore qui sint dicta fuga soluta."
},
"url": {
"en": "http://lind.com/fugiat-est-quidem-nostrum-consequuntur-soluta-aut"
}
}
}