company.Category.simple

Request

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

Response

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

Examples

Request

When used inside a request.

Example 1

{
    "name": "Angus Halvorson",
    "description": {
        "nl": "...",
        "en": "...",
        "fr": "..."
    },
    "active": true,
    "only_order_in_store": true,
    "seo": {
        "title": {
            "en": "Qui rem odit delectus delectus."
        },
        "description": {
            "en": "Animi sit aut saepe numquam et ipsa animi et. Aspernatur eos sit et quia. Asperiores illum aspernatur ipsum vel. Magni rerum occaecati in laboriosam aut."
        },
        "url": {
            "en": "http://www.brekke.net/modi-aut-itaque-tempora.html"
        }
    }
}

Response

When returned in a response.

Example 1

{
    "name": "Daija Hermiston",
    "description": {
        "nl": "...",
        "en": "...",
        "fr": "..."
    },
    "active": true,
    "only_order_in_store": true,
    "id": 10,
    "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": "Laborum facere dolorem quo vero libero aut est iusto at."
        },
        "description": {
            "en": "Harum eos non maiores asperiores quisquam et sint ut. Qui eos ab quos animi error aut vero necessitatibus. Itaque placeat dolorum sunt impedit veritatis dolore praesentium."
        },
        "url": {
            "en": "http://www.brakus.com/"
        }
    }
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.6.0 stable