Patch product by id (edit favourite)

PATCH /shops/@shop/products/@id

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
shop Int An integer value
id Int An integer value

Body

Pass the following properties via application/json or form encoding in the body of the request.

Field Type Description
favourite Bool A boolean value
category Dictionary Optional. A dictionary with fields
origin String Optional. Translated origin of the product
ingredients String Optional. Translated ingredients of the product

Example request 1

PATCH /shops/16/products/17 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.9.0
Accept-Language: en-US,en;q=0.5
Content-Type: application/json
Content-Length: 138
{
    "favourite": false,
    "category": {
        "id": 15,
        "name": "..."
    },
    "origin": "...",
    "ingredients": "..."
}

Response

Field Type Description
id Int Id of the product
name String Name of the product (translated)
images [Image] Array of Image
price_type PriceType A product has a price type that defines the price calculations and the way consumers can order the product.
target_price Bool Is true when the price of the product can change on takeout (e.g. not exact weight)
price Price Price of the product (cents). It only makes sense to use this property when price_type is not multiple choice. Please also check if the shop where you want to order has an offer with a discount for this product available.
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. Note that you will never receive products with this property set to true if you are not authorized.
subtitle String? Nullable. Important text you need to display under the product name
description String Description of the product (translated)
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)
url URL? Nullable. An URL field starting with http:// or https://
url_type String String enumarion of 'none', 'recipe', 'website'
specialty Bool A boolean value
favourite Bool? Nullable. A boolean value
product_prices [ProductPrice.detailed] Array of ProductPrice.detailed
optionsets [OptionSet.detailed] Array of OptionSet.detailed
min_max MinMaxSummary An overview of the minimum and maximum values for all amount types.
info [Message] A list of messages with information you need to display on the product page.
offer OfferItem.detailed? Nullable. Specificies where a discount should get appllied. A shop can give a complete category a discount, or only a certain product, or only a fixed product price. When calculating the discount, always round the price to 1 cent before multiplying it with an amount, persons or kilograms.
soldout Bool Check if product is soldout or not
stock Dictionary Amount in stock
soldout_until DateTime? Nullable. Product is temporarily soldout until
plu_code String? Nullable. A String value
category Dictionary Optional. A dictionary with fields
origin String Optional. Translated origin of the product
ingredients String Optional. Translated ingredients of the product

Example response 1

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

{
    "id": 12,
    "name": "...",
    "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
                }
            ],
            "file_id": 10,
            "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
                }
            ],
            "file_id": 16,
            "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
                }
            ],
            "file_id": 17,
            "white_background": true
        }
    ],
    "price_type": "PER_UNIT",
    "target_price": true,
    "price": {
        "value": 19,
        "currency": "EUR"
    },
    "only_order_in_store": true,
    "subtitle": "...",
    "description": "...",
    "allergens": [
        {
            "id": 14,
            "name": "Celery"
        },
        {
            "id": 16,
            "name": "Celery"
        },
        {
            "id": 11,
            "name": "Lupine"
        }
    ],
    "url": "https://example.com",
    "url_type": "none",
    "specialty": true,
    "favourite": false,
    "product_prices": [
        {
            "id": 12,
            "name": "...",
            "price": {
                "value": 19,
                "currency": "EUR"
            },
            "offer": {
                "type": "percentage",
                "x": 11,
                "y": 17,
                "percentage": 10,
                "minimum": 14,
                "offer": {
                    "id": 19,
                    "name": "Black Friday",
                    "from_date": "2019-01-31",
                    "until_date": "2019-01-31",
                    "valid_for": "order",
                    "recurring": 12,
                    "recurring_on": {
                        "day_1": 14,
                        "day_2": 15,
                        "day_3": 10,
                        "day_4": 16,
                        "day_5": 17,
                        "day_6": 11,
                        "day_7": 11
                    }
                },
                "applies_to": "category",
                "item_id": 15
            }
        },
        {
            "id": 14,
            "name": "...",
            "price": {
                "value": 13,
                "currency": "EUR"
            },
            "offer": {
                "type": "percentage",
                "x": 14,
                "y": 10,
                "percentage": 17,
                "minimum": 14,
                "offer": {
                    "id": 16,
                    "name": "Black Friday",
                    "from_date": "2019-01-31",
                    "until_date": "2019-01-31",
                    "valid_for": "order",
                    "recurring": 14,
                    "recurring_on": {
                        "day_1": 16,
                        "day_2": 10,
                        "day_3": 11,
                        "day_4": 11,
                        "day_5": 18,
                        "day_6": 11,
                        "day_7": 19
                    }
                },
                "applies_to": "category",
                "item_id": 15
            }
        },
        {
            "id": 17,
            "name": "...",
            "price": {
                "value": 16,
                "currency": "EUR"
            },
            "offer": {
                "type": "percentage",
                "x": 13,
                "y": 13,
                "percentage": 17,
                "minimum": 13,
                "offer": {
                    "id": 16,
                    "name": "Black Friday",
                    "from_date": "2019-01-31",
                    "until_date": "2019-01-31",
                    "valid_for": "order",
                    "recurring": 15,
                    "recurring_on": {
                        "day_1": 13,
                        "day_2": 12,
                        "day_3": 19,
                        "day_4": 12,
                        "day_5": 19,
                        "day_6": 15,
                        "day_7": 19
                    }
                },
                "applies_to": "category",
                "item_id": 18
            }
        }
    ],
    "optionsets": [
        {
            "id": 13,
            "name": "...",
            "code": "...",
            "multiple_choice": true,
            "choose_amount": true,
            "min_different_options": 19,
            "max_different_options": 18,
            "min_amount_options": 11,
            "max_amount_options": 16,
            "options": [
                {
                    "id": 17,
                    "name": "...",
                    "price_change": {
                        "value": 14,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 15,
                        "white_background": true
                    },
                    "require_image": true,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                },
                {
                    "id": 10,
                    "name": "...",
                    "price_change": {
                        "value": 18,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 10,
                        "white_background": true
                    },
                    "require_image": false,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                },
                {
                    "id": 13,
                    "name": "...",
                    "price_change": {
                        "value": 10,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 19,
                        "white_background": true
                    },
                    "require_image": true,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                }
            ]
        },
        {
            "id": 15,
            "name": "...",
            "code": "...",
            "multiple_choice": true,
            "choose_amount": true,
            "min_different_options": 11,
            "max_different_options": 12,
            "min_amount_options": 14,
            "max_amount_options": 14,
            "options": [
                {
                    "id": 19,
                    "name": "...",
                    "price_change": {
                        "value": 13,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 10,
                        "white_background": true
                    },
                    "require_image": true,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                },
                {
                    "id": 19,
                    "name": "...",
                    "price_change": {
                        "value": 14,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 10,
                        "white_background": false
                    },
                    "require_image": false,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                },
                {
                    "id": 14,
                    "name": "...",
                    "price_change": {
                        "value": 19,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 11,
                        "white_background": true
                    },
                    "require_image": false,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                }
            ]
        },
        {
            "id": 17,
            "name": "...",
            "code": "...",
            "multiple_choice": false,
            "choose_amount": false,
            "min_different_options": 19,
            "max_different_options": 11,
            "min_amount_options": 13,
            "max_amount_options": 16,
            "options": [
                {
                    "id": 14,
                    "name": "...",
                    "price_change": {
                        "value": 14,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 18,
                        "white_background": true
                    },
                    "require_image": true,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                },
                {
                    "id": 18,
                    "name": "...",
                    "price_change": {
                        "value": 13,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 11,
                        "white_background": true
                    },
                    "require_image": true,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                },
                {
                    "id": 19,
                    "name": "...",
                    "price_change": {
                        "value": 12,
                        "currency": "EUR"
                    },
                    "image": {
                        "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
                            }
                        ],
                        "file_id": 11,
                        "white_background": false
                    },
                    "require_image": false,
                    "code": "...",
                    "price_calculation": "PER_PIECE"
                }
            ]
        }
    ],
    "min_max": {
        "amount": {
            "minimum": 16,
            "maximum": 18,
            "suggested": 15
        },
        "weight": {
            "minimum": 10,
            "maximum": 12,
            "suggested": 11
        },
        "persons": {
            "minimum": 14,
            "maximum": 14,
            "suggested": 14
        }
    },
    "info": [
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        },
        {
            "name": "...",
            "title": "...",
            "text": "...",
            "type": "HTML"
        }
    ],
    "offer": {
        "type": "percentage",
        "x": 11,
        "y": 10,
        "percentage": 15,
        "minimum": 13,
        "offer": {
            "id": 17,
            "name": "Black Friday",
            "from_date": "2019-01-31",
            "until_date": "2019-01-31",
            "valid_for": "order",
            "recurring": 17,
            "recurring_on": {
                "day_1": 14,
                "day_2": 14,
                "day_3": 12,
                "day_4": 11,
                "day_5": 17,
                "day_6": 14,
                "day_7": 14
            }
        },
        "applies_to": "category",
        "item_id": 19
    },
    "soldout": true,
    "stock": {
        "amount": 13
    },
    "soldout_until": "2019-01-31 12:00:00",
    "plu_code": "...",
    "category": {
        "id": 16,
        "name": "..."
    },
    "origin": "...",
    "ingredients": "..."
}
1.9.0 stable