Get all the products that belong to a category and filter the results

GET /company/categories/@id/products

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 products in the given category

Query string (URL)

Append the querystring with following properties to the URL.

A dictionary with fields

Field Type Description
updated_since Timestamp Optional. Only return products that were adjusted since the given time
price_look_up_code Int Optional. Return all products with the given PLU code. PLU codes are not unique in our system

Example request 1

GET /company/categories/14/products?updated_since=1657085994&price_look_up_code=18 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.6.0
Accept-Language: en-US,en;q=0.5

Response

Array of company.Product.detailed: [company.Product.detailed]

company.Product.detailed

Field Type Description
name [Language: String] Name of the product
description [Language: String] Description of the product
specialty Bool Whether this product is a specialty. Specialties are also displayed in a separate category and are highlighted with a star icon.
active Bool Inactive products are not visible in the webshop
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.
price_type PriceType A product has a price type that defines the price calculations and the way consumers can order the product.
price UInt Price of the product (cents). Please note that this value is ignored when price_type is MULTIPLE_CHOICE.
target_price Bool Is true when it's not possible to provide an exact price of this product when ordering (e.g. not exact weight possible). This option might deactive online payments for orders with this product (shop settings).
url_type String String enumarion of 'none', 'recipe', 'website'
url URL? Nullable. An URL field starting with http:// or https://
min_max company.MinMaxSummary The allowed amounts a customer is allowed to order of a product for amount / weight / persons
images [Image] Array of Image
product_prices [company.ProductPrice] Array of company.ProductPrice
option_sets [company.OptionSet.simple] Array of company.OptionSet.simple
id Int Id of the product
allergens [Allergen]? Nullable. The allergens of this product. An empty array means no allergens. Null means no allergens specified (= can have allergens, ask in shop).
category_id Int The category ID of the product
price_look_up_code String? Nullable. A String value
code String? Nullable. A custom code. You can set this to your own code and use this field to map your products to Bakeronline products
seo company.SeoData Optional. Product page SEO metatags
origin [Language: String] Optional. Origin of the product

Example response 1

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

[
    {
        "name": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "description": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "specialty": false,
        "active": true,
        "only_order_in_store": false,
        "price_type": "PER_UNIT",
        "price": 17,
        "target_price": false,
        "url_type": "none",
        "url": "https://example.com",
        "min_max": {
            "amount": {
                "minimum": 13,
                "maximum": 14,
                "maximum_day": 10,
                "maximum_week": 16
            },
            "weight": {
                "minimum": 13,
                "maximum": 13,
                "maximum_day": 15,
                "maximum_week": 18,
                "suggested": 18
            },
            "persons": {
                "minimum": 18,
                "maximum": 16
            }
        },
        "images": [
            {
                "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
            },
            {
                "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
            },
            {
                "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
            }
        ],
        "product_prices": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 17,
                "id": 18,
                "order": 15,
                "price_look_up_code": "...",
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 16,
                "id": 12,
                "order": 19,
                "price_look_up_code": "...",
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 10,
                "id": 18,
                "order": 18,
                "price_look_up_code": "...",
                "code": "..."
            }
        ],
        "option_sets": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": false,
                "id": 19,
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": false,
                "id": 12,
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": true,
                "id": 10,
                "code": "..."
            }
        ],
        "id": 10,
        "allergens": [
            {
                "id": 16,
                "name": "Soy"
            },
            {
                "id": 18,
                "name": "Lupine"
            },
            {
                "id": 16,
                "name": "Milk"
            }
        ],
        "category_id": 10,
        "price_look_up_code": "...",
        "code": "...",
        "seo": {
            "title": {
                "en": "Deserunt et iure hic minus eaque vel velit."
            },
            "description": {
                "en": "Assumenda aut asperiores perferendis debitis soluta nam laudantium. Recusandae incidunt eius officia sunt quis nulla assumenda. Cumque possimus blanditiis nobis quos ut voluptas quo."
            },
            "url": {
                "en": "https://www.bednar.com/necessitatibus-ipsum-voluptas-tempore-placeat-libero"
            }
        },
        "origin": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        }
    },
    {
        "name": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "description": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "specialty": true,
        "active": true,
        "only_order_in_store": false,
        "price_type": "PER_UNIT",
        "price": 17,
        "target_price": false,
        "url_type": "none",
        "url": "https://example.com",
        "min_max": {
            "amount": {
                "minimum": 13,
                "maximum": 18,
                "maximum_day": 19,
                "maximum_week": 12
            },
            "weight": {
                "minimum": 15,
                "maximum": 16,
                "maximum_day": 13,
                "maximum_week": 15,
                "suggested": 19
            },
            "persons": {
                "minimum": 14,
                "maximum": 15
            }
        },
        "images": [
            {
                "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
            },
            {
                "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
            },
            {
                "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
            }
        ],
        "product_prices": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 16,
                "id": 17,
                "order": 12,
                "price_look_up_code": "...",
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 16,
                "id": 15,
                "order": 10,
                "price_look_up_code": "...",
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 16,
                "id": 14,
                "order": 18,
                "price_look_up_code": "...",
                "code": "..."
            }
        ],
        "option_sets": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": false,
                "id": 14,
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": true,
                "id": 11,
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": true,
                "id": 16,
                "code": "..."
            }
        ],
        "id": 11,
        "allergens": [
            {
                "id": 15,
                "name": "Fish"
            },
            {
                "id": 19,
                "name": "Mustard"
            },
            {
                "id": 17,
                "name": "Mollusc"
            }
        ],
        "category_id": 18,
        "price_look_up_code": "...",
        "code": "...",
        "seo": {
            "title": {
                "en": "Est consequatur velit velit voluptatem nesciunt distinctio debitis voluptatum."
            },
            "description": {
                "en": "Officiis debitis qui aut non. Quos quibusdam aut labore fugit recusandae. Iure nihil voluptas provident beatae. Enim repellendus aut sint dolorem quia."
            },
            "url": {
                "en": "http://www.barton.com/"
            }
        },
        "origin": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        }
    },
    {
        "name": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "description": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        },
        "specialty": true,
        "active": false,
        "only_order_in_store": true,
        "price_type": "PER_UNIT",
        "price": 12,
        "target_price": false,
        "url_type": "none",
        "url": "https://example.com",
        "min_max": {
            "amount": {
                "minimum": 11,
                "maximum": 11,
                "maximum_day": 12,
                "maximum_week": 13
            },
            "weight": {
                "minimum": 12,
                "maximum": 11,
                "maximum_day": 10,
                "maximum_week": 10,
                "suggested": 10
            },
            "persons": {
                "minimum": 14,
                "maximum": 18
            }
        },
        "images": [
            {
                "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
            },
            {
                "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
            },
            {
                "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
            }
        ],
        "product_prices": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 17,
                "id": 19,
                "order": 16,
                "price_look_up_code": "...",
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 14,
                "id": 11,
                "order": 13,
                "price_look_up_code": "...",
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "price": 17,
                "id": 16,
                "order": 13,
                "price_look_up_code": "...",
                "code": "..."
            }
        ],
        "option_sets": [
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": false,
                "id": 18,
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": false,
                "id": 18,
                "code": "..."
            },
            {
                "name": {
                    "nl": "...",
                    "en": "...",
                    "fr": "..."
                },
                "allow_attachment": true,
                "id": 10,
                "code": "..."
            }
        ],
        "id": 13,
        "allergens": [
            {
                "id": 14,
                "name": "Milk"
            },
            {
                "id": 14,
                "name": "Sulphite"
            },
            {
                "id": 14,
                "name": "Milk"
            }
        ],
        "category_id": 15,
        "price_look_up_code": "...",
        "code": "...",
        "seo": {
            "title": {
                "en": "Nostrum aut omnis est voluptatem suscipit distinctio saepe at amet."
            },
            "description": {
                "en": "Molestiae dolore hic quasi autem in voluptatem eius. Ipsum ipsum eius ad iure vel. Pariatur quod voluptas et maiores deserunt tempore."
            },
            "url": {
                "en": "https://huel.com/debitis-eaque-reiciendis-eum.html"
            }
        },
        "origin": {
            "nl": "...",
            "en": "...",
            "fr": "..."
        }
    }
]
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.6.0 stable