Get all the categories that belong to a shop

GET /company/shops/@id/categories

Request

Authentication

This endpoint requires authentication.

Header Value
Authorization Set the value to Bearer + + access_token

URL parameters

Replace the @ keywords in the URL with their corresponding value.

A dictionary with fields

Field Type Description
id Int Return all categories of the given shop

Example request 1

GET /company/shops/13/categories HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.2.0
Accept-Language: en-US,en;q=0.5

Response

Array of company.Category.simple: [company.Category.simple]

company.Category.simple

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

Example response 1

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 3892

[
    {
        "name": "Prof. Ursula Paucek",
        "description": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "active": false,
        "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": "Odit qui ab consequuntur enim in totam aut quis."
            },
            "description": {
                "en": "Nulla praesentium illum ut expedita. Ducimus est optio nesciunt debitis. Aut qui eligendi tenetur autem voluptas. Neque molestiae omnis et possimus aliquam alias modi."
            },
            "url": {
                "en": "https://www.russel.biz/expedita-sequi-et-rerum-sed-et-beatae-voluptatem"
            }
        }
    },
    {
        "name": "Rosendo Bartoletti",
        "description": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "active": false,
        "only_order_in_store": true,
        "id": 14,
        "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": "Illo deserunt tenetur nisi qui necessitatibus sit."
            },
            "description": {
                "en": "Id quaerat doloribus corporis quas molestiae aliquam. Id sed natus officia at. Earum consequatur velit exercitationem laborum vero. Eos sequi autem accusamus voluptas sequi autem."
            },
            "url": {
                "en": "http://stanton.com/"
            }
        }
    },
    {
        "name": "Miss Delta Dach Jr.",
        "description": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "active": true,
        "only_order_in_store": false,
        "id": 13,
        "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": "Quis nobis commodi nisi consequatur suscipit et corrupti."
            },
            "description": {
                "en": "Deserunt maiores quo omnis. Alias necessitatibus accusantium possimus rerum. In rerum aliquid ut possimus recusandae."
            },
            "url": {
                "en": "https://www.larkin.net/minus-quia-velit-earum-sunt-reprehenderit-rerum"
            }
        }
    }
]
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.2.0 stable