Validate the cart and checkout information and get essential information for the checkout flow

POST /checkout

Request

Optional authentication

You can use authentication for this request, but it is not required. Always provide the access_token when you have one. It may affect the response.

Header Value
Authorization Optional. Set the value to Bearer + + access_token

Body

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

A dictionary with fields

Field Type Description
cart [CartItem.cart] Array of CartItem.cart
add_items [CartItem.cart] Optional. Ask the API to add these items to your existing cart (in cart). This will merge items that can be merged and is also required to provide adding suggestions in the response. If you add menu's (Products with options that reference other products) to the Cart, you can set the value of the replace_products property to remove the linked options from the cart.
add_suggestions [CartItem.cart] Optional. Same as add_items, but use this if you want to add suggested products to the cart. This affects the merging mechanism. E.g. if you have Coca Cola in your current cart and add a suggested Big Mac menu with a Cola, you also want to remove that Cola from the cart. Needs to happen via the API because the frontend can't and shouldn't know which option is linked to a product. Used in combination with suggestions in the response.
checkout Checkout.Checkout Optional.
payment_method String Optional. String enumarion of 'point_of_sale', 'paid_in_shop', 'bank_transfer', 'ideal', 'bancontact', 'sofort', 'giropay', 'creditcard', 'cartes_bancaires', 'paypal', 'eps_uberweisung', 'apple_pay', 'google_pay', 'payconiq', 'monizze', 'edenred', 'webpay', 'credomatic', 'satispay', 'stripe_card_visa_mc', 'stripe_card_amex', 'stripe_apple_pay', 'stripe_google_pay', 'payu_romania_visa', 'payu_romania_mc', 'payu_romania_visa_electron', 'payu_romania_maestro', 'payu_brazil_amex', 'payu_brazil_boleto_bancario', 'payu_brazil_diners', 'payu_brazil_elo', 'payu_brazil_hipercard', 'payu_brazil_mc', 'payu_brazil_visa', 'payu_sp_maestro', 'payu_sp_mc', 'payu_sp_pbl', 'payu_sp_visa', 'payu_sp_blik', 'payu_iyzico_amex', 'payu_iyzico_mc', 'payu_iyzico_troy', 'payu_iyzico_visa', 'pesopay_gcash', 'pesopay_visa', 'pesopay_mc', 'redsys_bizum', 'sibs_id'

Example request 1

POST /checkout HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.5.1
Accept-Language: en-US,en;q=0.5
Content-Type: application/json
Content-Length: 7138
{
    "cart": [
        {
            "amount": 15,
            "persons": 11,
            "gram": 14,
            "comment": "...",
            "product_id": 11,
            "product_price_id": 18,
            "shop_id": 13,
            "options": [
                {
                    "option_id": 10,
                    "upload_id": 10
                },
                {
                    "option_id": 11,
                    "upload_id": 10
                },
                {
                    "option_id": 17,
                    "upload_id": 16
                }
            ]
        },
        {
            "amount": 19,
            "persons": 16,
            "gram": 11,
            "comment": "...",
            "product_id": 10,
            "product_price_id": 15,
            "shop_id": 10,
            "options": [
                {
                    "option_id": 19,
                    "upload_id": 11
                },
                {
                    "option_id": 17,
                    "upload_id": 10
                },
                {
                    "option_id": 16,
                    "upload_id": 12
                }
            ]
        },
        {
            "amount": 10,
            "persons": 18,
            "gram": 15,
            "comment": "...",
            "product_id": 13,
            "product_price_id": 17,
            "shop_id": 13,
            "options": [
                {
                    "option_id": 11,
                    "upload_id": 16
                },
                {
                    "option_id": 18,
                    "upload_id": 19
                },
                {
                    "option_id": 11,
                    "upload_id": 15
                }
            ]
        }
    ],
    "add_items": [
        {
            "amount": 17,
            "persons": 10,
            "gram": 11,
            "comment": "...",
            "product_id": 17,
            "product_price_id": 19,
            "shop_id": 15,
            "options": [
                {
                    "option_id": 19,
                    "upload_id": 16
                },
                {
                    "option_id": 15,
                    "upload_id": 19
                },
                {
                    "option_id": 13,
                    "upload_id": 13
                }
            ]
        },
        {
            "amount": 18,
            "persons": 16,
            "gram": 11,
            "comment": "...",
            "product_id": 15,
            "product_price_id": 13,
            "shop_id": 11,
            "options": [
                {
                    "option_id": 15,
                    "upload_id": 16
                },
                {
                    "option_id": 12,
                    "upload_id": 10
                },
                {
                    "option_id": 10,
                    "upload_id": 11
                }
            ]
        },
        {
            "amount": 13,
            "persons": 15,
            "gram": 16,
            "comment": "...",
            "product_id": 13,
            "product_price_id": 12,
            "shop_id": 18,
            "options": [
                {
                    "option_id": 14,
                    "upload_id": 19
                },
                {
                    "option_id": 13,
                    "upload_id": 18
                },
                {
                    "option_id": 14,
                    "upload_id": 17
                }
            ]
        }
    ],
    "add_suggestions": [
        {
            "amount": 16,
            "persons": 11,
            "gram": 10,
            "comment": "...",
            "product_id": 11,
            "product_price_id": 17,
            "shop_id": 18,
            "options": [
                {
                    "option_id": 14,
                    "upload_id": 13
                },
                {
                    "option_id": 16,
                    "upload_id": 10
                },
                {
                    "option_id": 12,
                    "upload_id": 11
                }
            ]
        },
        {
            "amount": 14,
            "persons": 12,
            "gram": 11,
            "comment": "...",
            "product_id": 15,
            "product_price_id": 18,
            "shop_id": 18,
            "options": [
                {
                    "option_id": 14,
                    "upload_id": 19
                },
                {
                    "option_id": 12,
                    "upload_id": 10
                },
                {
                    "option_id": 17,
                    "upload_id": 11
                }
            ]
        },
        {
            "amount": 10,
            "persons": 14,
            "gram": 19,
            "comment": "...",
            "product_id": 16,
            "product_price_id": 15,
            "shop_id": 13,
            "options": [
                {
                    "option_id": 11,
                    "upload_id": 15
                },
                {
                    "option_id": 10,
                    "upload_id": 19
                },
                {
                    "option_id": 18,
                    "upload_id": 15
                }
            ]
        }
    ],
    "checkout": {
        "method": "delivery",
        "delivery": {
            "date": "2019-01-31",
            "time": "12:00",
            "address": {
                "street": "Sint-Denijslaan",
                "nr": "96",
                "zipcode": "9000",
                "city": "Gent",
                "country": "BE"
            },
            "notes": "...",
            "end_time": "12:00"
        },
        "takeout": {
            "shops": {
                "...": {
                    "id": 19,
                    "date": "2019-01-31",
                    "time": "12:00"
                }
            }
        },
        "latch": {
            "latch_id": 14,
            "telephone": "+32 475 00 00 00",
            "date": "2019-01-31",
            "time": "12:00",
            "notification_method": "email"
        },
        "isop": {
            "origin": "in-store",
            "customer_id": 13,
            "employee_id": 13
        },
        "warranty": {
            "bank": "ING. Bank"
        },
        "invoice": {
            "company": {
                "name": "...",
                "vat": "BE0123456789",
                "address": {
                    "street": "Sint-Denijslaan",
                    "nr": "96",
                    "zipcode": "9000",
                    "city": "Gent",
                    "country": "BE"
                }
            }
        },
        "config": {
            "askInvoice": false,
            "askIsop": true
        },
        "coupons": [
            {
                "code": "..."
            },
            {
                "code": "..."
            },
            {
                "code": "..."
            }
        ]
    },
    "payment_method": "point_of_sale"
}

Response

A dictionary with fields

Field Type Description
cart [CartItem.cart] When a cart is returned, you are required to overwrite the cart in your app with the changed cart in the response. You should display a message to the user that you did change the cart. The errors field will contain human readable errors with the changes that have been made. If no errors are set, you should default to a generic message.
suggestions [CartItemSuggestionGroup] A collection of suggested CartItems that the user could be interested in. If you present these to the user and the user adds one to the cart, make sure to add the CartItem via the add_suggestions property in the validate request.
cart_config CartConfig Optional. When available, this will return all essential information about the cart. When the cart is also set in the response, the cart_config contains information about the cart in the response, not in the request.
errors [ValidationError] Optional. Allows to return error messages while still providing a corrected cart in the cart field. Can also contain errors about the checkout. Warning: It is still possible to return the default error structure (single error, or array of errors in response, see documentation) if errors occur before a corrected cart could get generated.

Example response 1

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

{
    "cart": [
        {
            "amount": 12,
            "persons": 13,
            "gram": 16,
            "comment": "...",
            "product": {
                "id": 11,
                "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
                            }
                        ],
                        "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
                    }
                ],
                "price_type": "PER_UNIT",
                "target_price": true,
                "price": {
                    "value": 17,
                    "currency": "EUR"
                }
            },
            "product_price": {
                "id": 18,
                "name": "...",
                "price": {
                    "value": 15,
                    "currency": "EUR"
                }
            },
            "calculated_prices": {
                "unit_price": {
                    "value": 10,
                    "currency": "EUR"
                },
                "price": {
                    "value": 14,
                    "currency": "EUR"
                }
            },
            "discount_prices": {
                "unit_price": {
                    "value": 17,
                    "currency": "EUR"
                },
                "price": {
                    "value": 10,
                    "currency": "EUR"
                }
            },
            "amount_free": 19,
            "shop": {
                "id": 15,
                "name": "Dr. Luis Considine V",
                "address": {
                    "street": "Sint-Denijslaan",
                    "nr": "96",
                    "zipcode": "9000",
                    "city": "Gent",
                    "country": "BE",
                    "position": {
                        "latitude": 1.54361,
                        "longitude": 0.45645
                    }
                },
                "allow_comments": true,
                "currency": "EUR"
            },
            "options": [
                {
                    "option": {
                        "id": 16,
                        "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
                                }
                            ],
                            "white_background": false
                        },
                        "require_image": true,
                        "code": "...",
                        "optionset": {
                            "id": 15,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 14,
                        "url": "https://example.com"
                    }
                },
                {
                    "option": {
                        "id": 12,
                        "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
                                }
                            ],
                            "white_background": true
                        },
                        "require_image": false,
                        "code": "...",
                        "optionset": {
                            "id": 12,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 16,
                        "url": "https://example.com"
                    }
                },
                {
                    "option": {
                        "id": 17,
                        "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
                                }
                            ],
                            "white_background": true
                        },
                        "require_image": false,
                        "code": "...",
                        "optionset": {
                            "id": 14,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 13,
                        "url": "https://example.com"
                    }
                }
            ]
        },
        {
            "amount": 19,
            "persons": 11,
            "gram": 13,
            "comment": "...",
            "product": {
                "id": 19,
                "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
                            }
                        ],
                        "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
                    }
                ],
                "price_type": "PER_UNIT",
                "target_price": false,
                "price": {
                    "value": 16,
                    "currency": "EUR"
                }
            },
            "product_price": {
                "id": 13,
                "name": "...",
                "price": {
                    "value": 16,
                    "currency": "EUR"
                }
            },
            "calculated_prices": {
                "unit_price": {
                    "value": 17,
                    "currency": "EUR"
                },
                "price": {
                    "value": 15,
                    "currency": "EUR"
                }
            },
            "discount_prices": {
                "unit_price": {
                    "value": 10,
                    "currency": "EUR"
                },
                "price": {
                    "value": 17,
                    "currency": "EUR"
                }
            },
            "amount_free": 14,
            "shop": {
                "id": 19,
                "name": "Marielle Jacobs",
                "address": {
                    "street": "Sint-Denijslaan",
                    "nr": "96",
                    "zipcode": "9000",
                    "city": "Gent",
                    "country": "BE",
                    "position": {
                        "latitude": 1.54361,
                        "longitude": 0.45645
                    }
                },
                "allow_comments": true,
                "currency": "EUR"
            },
            "options": [
                {
                    "option": {
                        "id": 16,
                        "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
                                }
                            ],
                            "white_background": true
                        },
                        "require_image": false,
                        "code": "...",
                        "optionset": {
                            "id": 14,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 16,
                        "url": "https://example.com"
                    }
                },
                {
                    "option": {
                        "id": 15,
                        "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
                                }
                            ],
                            "white_background": true
                        },
                        "require_image": true,
                        "code": "...",
                        "optionset": {
                            "id": 12,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 16,
                        "url": "https://example.com"
                    }
                },
                {
                    "option": {
                        "id": 19,
                        "name": "...",
                        "price_change": {
                            "value": 11,
                            "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
                                }
                            ],
                            "white_background": true
                        },
                        "require_image": true,
                        "code": "...",
                        "optionset": {
                            "id": 19,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 15,
                        "url": "https://example.com"
                    }
                }
            ]
        },
        {
            "amount": 10,
            "persons": 12,
            "gram": 15,
            "comment": "...",
            "product": {
                "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
                            }
                        ],
                        "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": true
                    }
                ],
                "price_type": "PER_UNIT",
                "target_price": true,
                "price": {
                    "value": 10,
                    "currency": "EUR"
                }
            },
            "product_price": {
                "id": 16,
                "name": "...",
                "price": {
                    "value": 16,
                    "currency": "EUR"
                }
            },
            "calculated_prices": {
                "unit_price": {
                    "value": 18,
                    "currency": "EUR"
                },
                "price": {
                    "value": 19,
                    "currency": "EUR"
                }
            },
            "discount_prices": {
                "unit_price": {
                    "value": 18,
                    "currency": "EUR"
                },
                "price": {
                    "value": 11,
                    "currency": "EUR"
                }
            },
            "amount_free": 18,
            "shop": {
                "id": 16,
                "name": "Tracy Gusikowski",
                "address": {
                    "street": "Sint-Denijslaan",
                    "nr": "96",
                    "zipcode": "9000",
                    "city": "Gent",
                    "country": "BE",
                    "position": {
                        "latitude": 1.54361,
                        "longitude": 0.45645
                    }
                },
                "allow_comments": true,
                "currency": "EUR"
            },
            "options": [
                {
                    "option": {
                        "id": 13,
                        "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
                                }
                            ],
                            "white_background": false
                        },
                        "require_image": false,
                        "code": "...",
                        "optionset": {
                            "id": 15,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 17,
                        "url": "https://example.com"
                    }
                },
                {
                    "option": {
                        "id": 12,
                        "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
                                }
                            ],
                            "white_background": true
                        },
                        "require_image": true,
                        "code": "...",
                        "optionset": {
                            "id": 18,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 13,
                        "url": "https://example.com"
                    }
                },
                {
                    "option": {
                        "id": 12,
                        "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
                                }
                            ],
                            "white_background": true
                        },
                        "require_image": true,
                        "code": "...",
                        "optionset": {
                            "id": 13,
                            "name": "...",
                            "code": "..."
                        }
                    },
                    "upload": {
                        "id": 14,
                        "url": "https://example.com"
                    }
                }
            ]
        }
    ],
    "suggestions": [
        {
            "name": "...",
            "suggestions": [
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": false
                    },
                    "price_change": {
                        "value": 19,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 11,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 13,
                        "persons": 16,
                        "gram": 13,
                        "comment": "...",
                        "product": {
                            "id": 18,
                            "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
                                        }
                                    ],
                                    "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
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": true,
                            "price": {
                                "value": 11,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 12,
                            "name": "...",
                            "price": {
                                "value": 16,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 11,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 19,
                        "shop": {
                            "id": 12,
                            "name": "Scot Leffler",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": true,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 10,
                                    "name": "...",
                                    "price_change": {
                                        "value": 16,
                                        "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 15,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 17,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 12,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 15,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 15,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 11,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 15,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 14,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                },
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": true
                    },
                    "price_change": {
                        "value": 18,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 19,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 13,
                        "persons": 14,
                        "gram": 13,
                        "comment": "...",
                        "product": {
                            "id": 15,
                            "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
                                        }
                                    ],
                                    "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
                                },
                                {
                                    "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
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": true,
                            "price": {
                                "value": 12,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 11,
                            "name": "...",
                            "price": {
                                "value": 18,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 14,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 15,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 11,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 19,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 11,
                        "shop": {
                            "id": 13,
                            "name": "Richie Powlowski Jr.",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": false,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 15,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 15,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 10,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 13,
                                    "name": "...",
                                    "price_change": {
                                        "value": 15,
                                        "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 15,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 16,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 10,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 18,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 16,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                },
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": false
                    },
                    "price_change": {
                        "value": 14,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 17,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 14,
                        "persons": 17,
                        "gram": 16,
                        "comment": "...",
                        "product": {
                            "id": 19,
                            "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
                                        }
                                    ],
                                    "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": true
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": false,
                            "price": {
                                "value": 16,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 10,
                            "name": "...",
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 19,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 15,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 14,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 19,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 11,
                        "shop": {
                            "id": 17,
                            "name": "Adrienne Hilpert",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": true,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 15,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 13,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 14,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 16,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 11,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 15,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 16,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 14,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 14,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                }
            ]
        },
        {
            "name": "...",
            "suggestions": [
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": true
                    },
                    "price_change": {
                        "value": 18,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 10,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 14,
                        "persons": 12,
                        "gram": 17,
                        "comment": "...",
                        "product": {
                            "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
                                        }
                                    ],
                                    "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
                                },
                                {
                                    "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
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": false,
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 17,
                            "name": "...",
                            "price": {
                                "value": 11,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 11,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 15,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 10,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 12,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 16,
                        "shop": {
                            "id": 13,
                            "name": "Dr. Sylvan Bosco PhD",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": false,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 16,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 16,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 10,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 12,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 17,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 18,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 19,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                },
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": true
                    },
                    "price_change": {
                        "value": 18,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 18,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 11,
                        "persons": 15,
                        "gram": 13,
                        "comment": "...",
                        "product": {
                            "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
                                        }
                                    ],
                                    "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
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": false,
                            "price": {
                                "value": 16,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 10,
                            "name": "...",
                            "price": {
                                "value": 12,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 15,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 15,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 15,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 18,
                        "shop": {
                            "id": 15,
                            "name": "Jayce Bode",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": true,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 16,
                                    "name": "...",
                                    "price_change": {
                                        "value": 17,
                                        "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 11,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 12,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 12,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 19,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 11,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 13,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 12,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 15,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                },
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": true
                    },
                    "price_change": {
                        "value": 19,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 15,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 16,
                        "persons": 12,
                        "gram": 11,
                        "comment": "...",
                        "product": {
                            "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
                                        }
                                    ],
                                    "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
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": true,
                            "price": {
                                "value": 15,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 14,
                            "name": "...",
                            "price": {
                                "value": 18,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 14,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 19,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 12,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 18,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 10,
                        "shop": {
                            "id": 19,
                            "name": "Jack Yost",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": false,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 12,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 16,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 13,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 12,
                                    "name": "...",
                                    "price_change": {
                                        "value": 16,
                                        "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 13,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 18,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 15,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 11,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 10,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                }
            ]
        },
        {
            "name": "...",
            "suggestions": [
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": false
                    },
                    "price_change": {
                        "value": 16,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 10,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 13,
                        "persons": 14,
                        "gram": 17,
                        "comment": "...",
                        "product": {
                            "id": 10,
                            "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
                                        }
                                    ],
                                    "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
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": false,
                            "price": {
                                "value": 11,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 19,
                            "name": "...",
                            "price": {
                                "value": 11,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 10,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 13,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 15,
                        "shop": {
                            "id": 17,
                            "name": "Augustine Medhurst MD",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": false,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 16,
                                    "name": "...",
                                    "price_change": {
                                        "value": 15,
                                        "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 15,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 17,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 18,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 17,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 13,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 13,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 10,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 10,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                },
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": true
                    },
                    "price_change": {
                        "value": 15,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 13,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 10,
                        "persons": 14,
                        "gram": 16,
                        "comment": "...",
                        "product": {
                            "id": 15,
                            "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
                                        }
                                    ],
                                    "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
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": false,
                            "price": {
                                "value": 11,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 19,
                            "name": "...",
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 14,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 19,
                        "shop": {
                            "id": 19,
                            "name": "Taurean Ebert",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": false,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 15,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 19,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 17,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 19,
                                    "name": "...",
                                    "price_change": {
                                        "value": 17,
                                        "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 12,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 16,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 12,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": true,
                                    "code": "...",
                                    "optionset": {
                                        "id": 17,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 13,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                },
                {
                    "name": "...",
                    "description": "...",
                    "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
                            }
                        ],
                        "white_background": false
                    },
                    "price_change": {
                        "value": 10,
                        "currency": "EUR"
                    },
                    "price_change_without_discount": {
                        "value": 12,
                        "currency": "EUR"
                    },
                    "item": {
                        "amount": 10,
                        "persons": 11,
                        "gram": 12,
                        "comment": "...",
                        "product": {
                            "id": 10,
                            "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
                                        }
                                    ],
                                    "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": true
                                }
                            ],
                            "price_type": "PER_UNIT",
                            "target_price": false,
                            "price": {
                                "value": 11,
                                "currency": "EUR"
                            }
                        },
                        "product_price": {
                            "id": 17,
                            "name": "...",
                            "price": {
                                "value": 12,
                                "currency": "EUR"
                            }
                        },
                        "calculated_prices": {
                            "unit_price": {
                                "value": 15,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 19,
                                "currency": "EUR"
                            }
                        },
                        "discount_prices": {
                            "unit_price": {
                                "value": 17,
                                "currency": "EUR"
                            },
                            "price": {
                                "value": 13,
                                "currency": "EUR"
                            }
                        },
                        "amount_free": 19,
                        "shop": {
                            "id": 18,
                            "name": "Mr. Patrick King Jr.",
                            "address": {
                                "street": "Sint-Denijslaan",
                                "nr": "96",
                                "zipcode": "9000",
                                "city": "Gent",
                                "country": "BE",
                                "position": {
                                    "latitude": 1.54361,
                                    "longitude": 0.45645
                                }
                            },
                            "allow_comments": false,
                            "currency": "EUR"
                        },
                        "options": [
                            {
                                "option": {
                                    "id": 15,
                                    "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
                                            }
                                        ],
                                        "white_background": true
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 14,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 11,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 15,
                                    "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 19,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 13,
                                    "url": "https://example.com"
                                }
                            },
                            {
                                "option": {
                                    "id": 15,
                                    "name": "...",
                                    "price_change": {
                                        "value": 11,
                                        "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
                                            }
                                        ],
                                        "white_background": false
                                    },
                                    "require_image": false,
                                    "code": "...",
                                    "optionset": {
                                        "id": 11,
                                        "name": "...",
                                        "code": "..."
                                    }
                                },
                                "upload": {
                                    "id": 17,
                                    "url": "https://example.com"
                                }
                            }
                        ]
                    }
                }
            ]
        }
    ],
    "cart_config": {
        "target_price": false,
        "prices": {
            "price": {
                "value": 14,
                "currency": "EUR"
            },
            "discount": {
                "value": 18,
                "currency": "EUR"
            },
            "warranty": {
                "value": 13,
                "currency": "EUR"
            },
            "delivery_cost": {
                "value": 19,
                "currency": "EUR"
            },
            "invoice_cost": {
                "value": 13,
                "currency": "EUR"
            },
            "sms_cost": {
                "value": 17,
                "currency": "EUR"
            },
            "transaction_cost": {
                "value": 17,
                "currency": "EUR"
            },
            "price_to_pay": {
                "value": 16,
                "currency": "EUR"
            },
            "price_with_discount": {
                "value": 10,
                "currency": "EUR"
            }
        },
        "payment": {
            "methods": [
                "point_of_sale",
                "paid_in_shop",
                "bank_transfer",
                "ideal",
                "bancontact",
                "sofort",
                "giropay",
                "creditcard",
                "cartes_bancaires",
                "paypal",
                "eps_uberweisung",
                "apple_pay",
                "google_pay",
                "payconiq",
                "monizze",
                "edenred",
                "webpay",
                "credomatic",
                "satispay",
                "stripe_card_visa_mc",
                "stripe_card_amex",
                "stripe_apple_pay",
                "stripe_google_pay",
                "payu_romania_visa",
                "payu_romania_mc",
                "payu_romania_visa_electron",
                "payu_romania_maestro",
                "payu_brazil_amex",
                "payu_brazil_boleto_bancario",
                "payu_brazil_diners",
                "payu_brazil_elo",
                "payu_brazil_hipercard",
                "payu_brazil_mc",
                "payu_brazil_visa",
                "payu_sp_maestro",
                "payu_sp_mc",
                "payu_sp_pbl",
                "payu_sp_visa",
                "payu_sp_blik",
                "payu_iyzico_amex",
                "payu_iyzico_mc",
                "payu_iyzico_troy",
                "payu_iyzico_visa",
                "pesopay_gcash",
                "pesopay_visa",
                "pesopay_mc",
                "redsys_bizum",
                "sibs_id"
            ],
            "messages": [
                "...",
                "...",
                "..."
            ]
        },
        "takeout": {
            "allowed": false
        },
        "delivery": {
            "allowed": false,
            "use_intervals": false,
            "messages": [
                "...",
                "...",
                "..."
            ]
        },
        "latch": {
            "allowed": true,
            "latches": [
                {
                    "id": 11,
                    "address": {
                        "street": "Sint-Denijslaan",
                        "nr": "96",
                        "zipcode": "9000",
                        "city": "Gent",
                        "country": "BE",
                        "position": {
                            "latitude": 1.54361,
                            "longitude": 0.45645
                        }
                    },
                    "name": "..."
                },
                {
                    "id": 16,
                    "address": {
                        "street": "Sint-Denijslaan",
                        "nr": "96",
                        "zipcode": "9000",
                        "city": "Gent",
                        "country": "BE",
                        "position": {
                            "latitude": 1.54361,
                            "longitude": 0.45645
                        }
                    },
                    "name": "..."
                },
                {
                    "id": 19,
                    "address": {
                        "street": "Sint-Denijslaan",
                        "nr": "96",
                        "zipcode": "9000",
                        "city": "Gent",
                        "country": "BE",
                        "position": {
                            "latitude": 1.54361,
                            "longitude": 0.45645
                        }
                    },
                    "name": "..."
                }
            ]
        },
        "checkout_method_messages": [
            "...",
            "...",
            "..."
        ],
        "warranty": false,
        "discounts": [
            {
                "name": "...",
                "description": "...",
                "percentage": 9.67,
                "fixed": 12,
                "type": "first-order",
                "code": "..."
            },
            {
                "name": "...",
                "description": "...",
                "percentage": 9.67,
                "fixed": 12,
                "type": "first-order",
                "code": "..."
            },
            {
                "name": "...",
                "description": "...",
                "percentage": 9.67,
                "fixed": 12,
                "type": "first-order",
                "code": "..."
            }
        ],
        "allow_combined_cart": true,
        "invoice": {
            "messages": [
                "...",
                "...",
                "..."
            ]
        },
        "allow_discount_codes": false
    },
    "errors": [
        {
            "code": "...",
            "message": "...",
            "field": "..."
        },
        {
            "code": "...",
            "message": "...",
            "field": "..."
        },
        {
            "code": "...",
            "message": "...",
            "field": "..."
        }
    ]
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.5.1 stable