Get recent shops

GET /shops/recent

Request

Authentication

This endpoint requires authentication.

Header Value
Authorization Set the value to Bearer + + access_token

Query string (URL)

Append the querystring with following properties to the URL.

A dictionary with fields

Field Type Description
company_id Int Optional. Only return shops of this company ID

Example request 1

GET /shops/recent?company_id=17 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.8.0
Accept-Language: en-US,en;q=0.5

Response

Array of Shop.extended: [Shop.extended]

Shop.extended

Field Type Description
id Int Id of the shop
name String Name of the shop (translated)
address Address.detailed An address
allow_comments Bool A boolean value
url String A String value
allow_order_comments Bool A boolean value
allow_product_comments Bool A boolean value
allow_order_messages Bool A boolean value
global_discount_percentage Int Discount percentage for all products
offers [Offer.detailed] Array of Offer.detailed
images [String: Image] Dictionary of Image with keys of type String
allow_orders Bool A boolean value
delivery_use_intervals Bool A boolean value
categories [Category.simple] Array of Category.simple
category_groups [CategoryGroup] List of category groups. The ids refer to a category in the categories field. Categories without a CategoryGroup should also get displayed.
allow_invoices Bool A boolean value
category_groups_overview Bool Show an overview of all the category groups on the webshop homepage
display_mode String String enumarion of 'blocks', 'list'
takeout_use_intervals Bool A boolean value
joyn_enabled Bool A boolean value
category_overview Bool Show an overview of all the categories on the webshop homepage
fold_category_groups Bool Whether the shop prefers to hide all the categories for all category groups by default
hours [MethodHours] Information about the opening hours, delivery hours... for all available methods and machines
contact Contact Contact details of a shop
messages [Message] You are required to keep track of the messages the user saw. When you receive new messages, you should indicate this in the app with a bubble icon (e.g. red circle with number of new messages)
info [Message] Same as messages, but you shouldn't notify the user when this changes or is received for the first time
status ShopStatus
has_specialties Bool A boolean value
currency Currency 3 letter ISO 4217 currency name (string)

Example response 1

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

[
    {
        "id": 14,
        "name": "Darien Lindgren",
        "address": {
            "street": "Sint-Denijslaan",
            "nr": "96",
            "zipcode": "9000",
            "city": "Gent",
            "country": "BE",
            "position": {
                "latitude": 1.54361,
                "longitude": 0.45645
            }
        },
        "allow_comments": true,
        "url": "...",
        "allow_order_comments": true,
        "allow_product_comments": true,
        "allow_order_messages": true,
        "global_discount_percentage": 18,
        "offers": [
            {
                "id": 17,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 14,
                "recurring_on": {
                    "day_1": 11,
                    "day_2": 14,
                    "day_3": 16,
                    "day_4": 13,
                    "day_5": 19,
                    "day_6": 12,
                    "day_7": 14
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 16,
                        "y": 11,
                        "percentage": 10,
                        "minimum": 12,
                        "applies_to": "category",
                        "item_id": 17
                    },
                    {
                        "type": "percentage",
                        "x": 19,
                        "y": 14,
                        "percentage": 13,
                        "minimum": 15,
                        "applies_to": "category",
                        "item_id": 14
                    },
                    {
                        "type": "percentage",
                        "x": 15,
                        "y": 18,
                        "percentage": 15,
                        "minimum": 19,
                        "applies_to": "category",
                        "item_id": 13
                    }
                ]
            },
            {
                "id": 12,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 10,
                "recurring_on": {
                    "day_1": 19,
                    "day_2": 10,
                    "day_3": 19,
                    "day_4": 14,
                    "day_5": 18,
                    "day_6": 18,
                    "day_7": 18
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 11,
                        "y": 19,
                        "percentage": 11,
                        "minimum": 15,
                        "applies_to": "category",
                        "item_id": 15
                    },
                    {
                        "type": "percentage",
                        "x": 12,
                        "y": 15,
                        "percentage": 11,
                        "minimum": 13,
                        "applies_to": "category",
                        "item_id": 11
                    },
                    {
                        "type": "percentage",
                        "x": 19,
                        "y": 19,
                        "percentage": 11,
                        "minimum": 13,
                        "applies_to": "category",
                        "item_id": 19
                    }
                ]
            },
            {
                "id": 14,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 15,
                "recurring_on": {
                    "day_1": 17,
                    "day_2": 15,
                    "day_3": 18,
                    "day_4": 16,
                    "day_5": 16,
                    "day_6": 16,
                    "day_7": 13
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 13,
                        "y": 13,
                        "percentage": 16,
                        "minimum": 12,
                        "applies_to": "category",
                        "item_id": 15
                    },
                    {
                        "type": "percentage",
                        "x": 18,
                        "y": 18,
                        "percentage": 11,
                        "minimum": 18,
                        "applies_to": "category",
                        "item_id": 10
                    },
                    {
                        "type": "percentage",
                        "x": 14,
                        "y": 15,
                        "percentage": 16,
                        "minimum": 18,
                        "applies_to": "category",
                        "item_id": 16
                    }
                ]
            }
        ],
        "images": {
            "avatar": {
                "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
            }
        },
        "allow_orders": true,
        "delivery_use_intervals": true,
        "categories": [
            {
                "id": 17,
                "name": "Mr. D'angelo Lowe V",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": true
                },
                "only_order_in_store": true,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Eius adipisci voluptas qui ipsum quisquam animi porro."
                    },
                    "description": {
                        "en": "Qui vero ea velit ducimus placeat. Aut sit ex id similique alias ex eius. Sapiente quibusdam qui quo error. Iste veritatis deserunt dolore consequatur."
                    },
                    "url": {
                        "en": "http://cummerata.com/corporis-mollitia-exercitationem-et-suscipit"
                    }
                }
            },
            {
                "id": 11,
                "name": "Merlin Treutel",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": false
                },
                "only_order_in_store": false,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Dolorem nemo deserunt voluptates aut eligendi voluptate tenetur."
                    },
                    "description": {
                        "en": "Itaque accusantium excepturi voluptas a. Cum voluptatem in sed necessitatibus reprehenderit adipisci voluptatibus. Veritatis possimus dolor quis ipsa."
                    },
                    "url": {
                        "en": "http://hodkiewicz.com/"
                    }
                }
            },
            {
                "id": 19,
                "name": "Jared Dickens",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": false
                },
                "only_order_in_store": false,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Et et in id voluptate ad eos odit dolores."
                    },
                    "description": {
                        "en": "Laboriosam illo deserunt vitae laborum vel voluptas. Laudantium molestiae nostrum totam amet. Dolores sed tenetur laboriosam dolores."
                    },
                    "url": {
                        "en": "http://weissnat.com/in-voluptas-ipsa-illum-architecto-dolorum-rerum-at"
                    }
                }
            }
        ],
        "category_groups": [
            {
                "name": "...",
                "category_ids": [
                    13,
                    15,
                    11
                ],
                "id": 10,
                "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
                }
            },
            {
                "name": "...",
                "category_ids": [
                    10,
                    15,
                    19
                ],
                "id": 13,
                "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
                }
            },
            {
                "name": "...",
                "category_ids": [
                    12,
                    10,
                    14
                ],
                "id": 10,
                "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
                }
            }
        ],
        "allow_invoices": true,
        "category_groups_overview": true,
        "display_mode": "blocks",
        "takeout_use_intervals": true,
        "joyn_enabled": false,
        "category_overview": true,
        "fold_category_groups": false,
        "hours": [
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "09:51 - 10:23",
                            "09:51 - 10:23",
                            "09:51 - 10:23"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "07:26 - 18:30",
                            "07:26 - 18:30",
                            "07:26 - 18:30"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "07:36 - 19:48",
                            "07:36 - 19:48",
                            "07:36 - 19:48"
                        ]
                    }
                ]
            },
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "08:24 - 15:50",
                            "08:24 - 15:50",
                            "08:24 - 15:50"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "09:41 - 11:49",
                            "09:41 - 11:49",
                            "09:41 - 11:49"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "07:50 - 21:12",
                            "07:50 - 21:12",
                            "07:50 - 21:12"
                        ]
                    }
                ]
            },
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "06:29 - 16:22",
                            "06:29 - 16:22",
                            "06:29 - 16:22"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "09:38 - 15:18",
                            "09:38 - 15:18",
                            "09:38 - 15:18"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "06:20 - 17:17",
                            "06:20 - 17:17",
                            "06:20 - 17:17"
                        ]
                    }
                ]
            }
        ],
        "contact": {
            "address": {
                "street": "Sint-Denijslaan",
                "nr": "96",
                "zipcode": "9000",
                "city": "Gent",
                "country": "BE"
            },
            "telephone": "+32 475 00 00 00",
            "vat": "BE0123.456.789",
            "social": {
                "facebook": "https://example.com",
                "twitter": "https://example.com",
                "snapchat": "https://example.com",
                "instagram": "https://example.com",
                "pinterest": "https://example.com",
                "youtube": "https://example.com"
            },
            "website": "https://example.com",
            "email": "example@domain.com"
        },
        "messages": [
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            }
        ],
        "info": [
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            }
        ],
        "status": {
            "open": {
                "status": "closes-soon",
                "text": "..."
            },
            "takeout": "...",
            "delivery": "...",
            "latch": "..."
        },
        "has_specialties": true,
        "currency": "EUR"
    },
    {
        "id": 12,
        "name": "Dr. Rickey Leuschke",
        "address": {
            "street": "Sint-Denijslaan",
            "nr": "96",
            "zipcode": "9000",
            "city": "Gent",
            "country": "BE",
            "position": {
                "latitude": 1.54361,
                "longitude": 0.45645
            }
        },
        "allow_comments": false,
        "url": "...",
        "allow_order_comments": false,
        "allow_product_comments": true,
        "allow_order_messages": true,
        "global_discount_percentage": 12,
        "offers": [
            {
                "id": 14,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 14,
                "recurring_on": {
                    "day_1": 13,
                    "day_2": 17,
                    "day_3": 11,
                    "day_4": 14,
                    "day_5": 16,
                    "day_6": 19,
                    "day_7": 17
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 16,
                        "y": 13,
                        "percentage": 17,
                        "minimum": 10,
                        "applies_to": "category",
                        "item_id": 17
                    },
                    {
                        "type": "percentage",
                        "x": 12,
                        "y": 13,
                        "percentage": 13,
                        "minimum": 13,
                        "applies_to": "category",
                        "item_id": 15
                    },
                    {
                        "type": "percentage",
                        "x": 10,
                        "y": 13,
                        "percentage": 15,
                        "minimum": 13,
                        "applies_to": "category",
                        "item_id": 15
                    }
                ]
            },
            {
                "id": 15,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 11,
                "recurring_on": {
                    "day_1": 16,
                    "day_2": 10,
                    "day_3": 19,
                    "day_4": 17,
                    "day_5": 11,
                    "day_6": 13,
                    "day_7": 10
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 15,
                        "y": 14,
                        "percentage": 17,
                        "minimum": 12,
                        "applies_to": "category",
                        "item_id": 11
                    },
                    {
                        "type": "percentage",
                        "x": 14,
                        "y": 14,
                        "percentage": 14,
                        "minimum": 12,
                        "applies_to": "category",
                        "item_id": 19
                    },
                    {
                        "type": "percentage",
                        "x": 16,
                        "y": 11,
                        "percentage": 14,
                        "minimum": 15,
                        "applies_to": "category",
                        "item_id": 10
                    }
                ]
            },
            {
                "id": 19,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 17,
                "recurring_on": {
                    "day_1": 18,
                    "day_2": 11,
                    "day_3": 16,
                    "day_4": 15,
                    "day_5": 11,
                    "day_6": 18,
                    "day_7": 19
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 17,
                        "y": 13,
                        "percentage": 12,
                        "minimum": 14,
                        "applies_to": "category",
                        "item_id": 11
                    },
                    {
                        "type": "percentage",
                        "x": 15,
                        "y": 14,
                        "percentage": 11,
                        "minimum": 17,
                        "applies_to": "category",
                        "item_id": 17
                    },
                    {
                        "type": "percentage",
                        "x": 13,
                        "y": 19,
                        "percentage": 13,
                        "minimum": 17,
                        "applies_to": "category",
                        "item_id": 13
                    }
                ]
            }
        ],
        "images": {
            "avatar": {
                "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
            }
        },
        "allow_orders": true,
        "delivery_use_intervals": false,
        "categories": [
            {
                "id": 10,
                "name": "Amanda Greenholt",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": true
                },
                "only_order_in_store": false,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Dicta eius debitis ipsam aspernatur delectus consequuntur."
                    },
                    "description": {
                        "en": "Est ullam asperiores expedita aliquid. Quibusdam omnis consectetur quis autem tempora maiores. Omnis dolorem et numquam impedit non velit. Maiores doloribus consequuntur dolor sunt ut."
                    },
                    "url": {
                        "en": "https://greenholt.biz/est-est-voluptatem-sed-eveniet.html"
                    }
                }
            },
            {
                "id": 17,
                "name": "Prof. Jaiden Heathcote DDS",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": true
                },
                "only_order_in_store": true,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Veniam dolor occaecati nostrum iste voluptas ullam ipsam."
                    },
                    "description": {
                        "en": "Omnis velit architecto numquam amet perferendis. Est repellendus est est vitae non. Et voluptatibus quaerat iure dolorem dolor delectus. Mollitia porro labore et provident aut doloremque et."
                    },
                    "url": {
                        "en": "http://www.reichert.com/tempore-nesciunt-qui-molestiae-cum-sed-quisquam.html"
                    }
                }
            },
            {
                "id": 18,
                "name": "Ila Terry",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": true
                },
                "only_order_in_store": true,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Aperiam saepe similique id vel est quia nulla dolore."
                    },
                    "description": {
                        "en": "Quo exercitationem nihil sunt eaque minima numquam occaecati. Quisquam aut odit voluptatem dolorum fugiat."
                    },
                    "url": {
                        "en": "http://feil.org/"
                    }
                }
            }
        ],
        "category_groups": [
            {
                "name": "...",
                "category_ids": [
                    13,
                    18,
                    16
                ],
                "id": 13,
                "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
                }
            },
            {
                "name": "...",
                "category_ids": [
                    18,
                    13,
                    14
                ],
                "id": 10,
                "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
                }
            },
            {
                "name": "...",
                "category_ids": [
                    12,
                    16,
                    10
                ],
                "id": 12,
                "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
                }
            }
        ],
        "allow_invoices": false,
        "category_groups_overview": false,
        "display_mode": "blocks",
        "takeout_use_intervals": true,
        "joyn_enabled": true,
        "category_overview": false,
        "fold_category_groups": false,
        "hours": [
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "07:29 - 16:17",
                            "07:29 - 16:17",
                            "07:29 - 16:17"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "07:42 - 12:16",
                            "07:42 - 12:16",
                            "07:42 - 12:16"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "08:21 - 16:22",
                            "08:21 - 16:22",
                            "08:21 - 16:22"
                        ]
                    }
                ]
            },
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "07:58 - 10:47",
                            "07:58 - 10:47",
                            "07:58 - 10:47"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "06:59 - 18:24",
                            "06:59 - 18:24",
                            "06:59 - 18:24"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "08:15 - 20:11",
                            "08:15 - 20:11",
                            "08:15 - 20:11"
                        ]
                    }
                ]
            },
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "06:18 - 20:23",
                            "06:18 - 20:23",
                            "06:18 - 20:23"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "07:45 - 11:24",
                            "07:45 - 11:24",
                            "07:45 - 11:24"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "09:55 - 10:24",
                            "09:55 - 10:24",
                            "09:55 - 10:24"
                        ]
                    }
                ]
            }
        ],
        "contact": {
            "address": {
                "street": "Sint-Denijslaan",
                "nr": "96",
                "zipcode": "9000",
                "city": "Gent",
                "country": "BE"
            },
            "telephone": "+32 475 00 00 00",
            "vat": "BE0123.456.789",
            "social": {
                "facebook": "https://example.com",
                "twitter": "https://example.com",
                "snapchat": "https://example.com",
                "instagram": "https://example.com",
                "pinterest": "https://example.com",
                "youtube": "https://example.com"
            },
            "website": "https://example.com",
            "email": "example@domain.com"
        },
        "messages": [
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            }
        ],
        "info": [
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            }
        ],
        "status": {
            "open": {
                "status": "closes-soon",
                "text": "..."
            },
            "takeout": "...",
            "delivery": "...",
            "latch": "..."
        },
        "has_specialties": false,
        "currency": "EUR"
    },
    {
        "id": 15,
        "name": "Jeramy Skiles DDS",
        "address": {
            "street": "Sint-Denijslaan",
            "nr": "96",
            "zipcode": "9000",
            "city": "Gent",
            "country": "BE",
            "position": {
                "latitude": 1.54361,
                "longitude": 0.45645
            }
        },
        "allow_comments": true,
        "url": "...",
        "allow_order_comments": false,
        "allow_product_comments": true,
        "allow_order_messages": false,
        "global_discount_percentage": 11,
        "offers": [
            {
                "id": 10,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 19,
                "recurring_on": {
                    "day_1": 16,
                    "day_2": 11,
                    "day_3": 13,
                    "day_4": 11,
                    "day_5": 12,
                    "day_6": 12,
                    "day_7": 10
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 14,
                        "y": 17,
                        "percentage": 12,
                        "minimum": 11,
                        "applies_to": "category",
                        "item_id": 15
                    },
                    {
                        "type": "percentage",
                        "x": 13,
                        "y": 14,
                        "percentage": 13,
                        "minimum": 16,
                        "applies_to": "category",
                        "item_id": 10
                    },
                    {
                        "type": "percentage",
                        "x": 18,
                        "y": 13,
                        "percentage": 17,
                        "minimum": 17,
                        "applies_to": "category",
                        "item_id": 17
                    }
                ]
            },
            {
                "id": 12,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 16,
                "recurring_on": {
                    "day_1": 13,
                    "day_2": 10,
                    "day_3": 11,
                    "day_4": 12,
                    "day_5": 11,
                    "day_6": 14,
                    "day_7": 14
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 13,
                        "y": 15,
                        "percentage": 12,
                        "minimum": 13,
                        "applies_to": "category",
                        "item_id": 13
                    },
                    {
                        "type": "percentage",
                        "x": 15,
                        "y": 14,
                        "percentage": 17,
                        "minimum": 12,
                        "applies_to": "category",
                        "item_id": 19
                    },
                    {
                        "type": "percentage",
                        "x": 13,
                        "y": 19,
                        "percentage": 19,
                        "minimum": 17,
                        "applies_to": "category",
                        "item_id": 15
                    }
                ]
            },
            {
                "id": 11,
                "name": "Black Friday",
                "from_date": "2019-01-31",
                "until_date": "2019-01-31",
                "valid_for": "order",
                "recurring": 13,
                "recurring_on": {
                    "day_1": 17,
                    "day_2": 15,
                    "day_3": 18,
                    "day_4": 10,
                    "day_5": 18,
                    "day_6": 12,
                    "day_7": 16
                },
                "items": [
                    {
                        "type": "percentage",
                        "x": 16,
                        "y": 19,
                        "percentage": 18,
                        "minimum": 12,
                        "applies_to": "category",
                        "item_id": 19
                    },
                    {
                        "type": "percentage",
                        "x": 12,
                        "y": 19,
                        "percentage": 19,
                        "minimum": 11,
                        "applies_to": "category",
                        "item_id": 14
                    },
                    {
                        "type": "percentage",
                        "x": 17,
                        "y": 12,
                        "percentage": 15,
                        "minimum": 13,
                        "applies_to": "category",
                        "item_id": 14
                    }
                ]
            }
        ],
        "images": {
            "avatar": {
                "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
            }
        },
        "allow_orders": false,
        "delivery_use_intervals": true,
        "categories": [
            {
                "id": 13,
                "name": "Torey Kovacek Sr.",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": false
                },
                "only_order_in_store": true,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Repudiandae eius eos iusto aut quia ea."
                    },
                    "description": {
                        "en": "Ut et culpa dolorum autem excepturi. Sed enim eveniet animi et. Ea harum enim amet labore neque. Ut consectetur recusandae a laboriosam et."
                    },
                    "url": {
                        "en": "http://www.schroeder.com/accusantium-eligendi-deserunt-repudiandae-quos-maxime-voluptas-facilis"
                    }
                }
            },
            {
                "id": 17,
                "name": "Trent Macejkovic DDS",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": false
                },
                "only_order_in_store": false,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Enim in recusandae architecto aut quo esse quia omnis quia."
                    },
                    "description": {
                        "en": "Aut vel et eius et. Libero asperiores quae asperiores ratione quisquam. Praesentium alias provident quia quo commodi."
                    },
                    "url": {
                        "en": "http://www.abbott.info/voluptas-et-et-sit-illum-ea-possimus"
                    }
                }
            },
            {
                "id": 12,
                "name": "Marcella Swaniawski",
                "banner": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": true
                },
                "only_order_in_store": true,
                "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
                },
                "seo": {
                    "title": {
                        "en": "Nemo modi voluptas nesciunt quas nobis doloribus dolores possimus sed quis molestiae."
                    },
                    "description": {
                        "en": "Unde qui laudantium repellat dolor aliquam. Fuga maxime officiis vero eligendi omnis ut. Dolorem iusto sunt autem quo ad architecto."
                    },
                    "url": {
                        "en": "http://www.hamill.info/"
                    }
                }
            }
        ],
        "category_groups": [
            {
                "name": "...",
                "category_ids": [
                    10,
                    13,
                    12
                ],
                "id": 15,
                "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
                }
            },
            {
                "name": "...",
                "category_ids": [
                    16,
                    19,
                    19
                ],
                "id": 11,
                "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
                }
            },
            {
                "name": "...",
                "category_ids": [
                    19,
                    15,
                    10
                ],
                "id": 14,
                "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
                }
            }
        ],
        "allow_invoices": true,
        "category_groups_overview": false,
        "display_mode": "blocks",
        "takeout_use_intervals": false,
        "joyn_enabled": true,
        "category_overview": true,
        "fold_category_groups": false,
        "hours": [
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "07:55 - 13:18",
                            "07:55 - 13:18",
                            "07:55 - 13:18"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "08:35 - 16:18",
                            "08:35 - 16:18",
                            "08:35 - 16:18"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "09:55 - 20:42",
                            "09:55 - 20:42",
                            "09:55 - 20:42"
                        ]
                    }
                ]
            },
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "06:21 - 19:54",
                            "06:21 - 19:54",
                            "06:21 - 19:54"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "06:36 - 15:40",
                            "06:36 - 15:40",
                            "06:36 - 15:40"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "09:57 - 14:37",
                            "09:57 - 14:37",
                            "09:57 - 14:37"
                        ]
                    }
                ]
            },
            {
                "name": "...",
                "description": "...",
                "type": "open",
                "hours": [
                    {
                        "days": "5",
                        "times": [
                            "08:50 - 21:23",
                            "08:50 - 21:23",
                            "08:50 - 21:23"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "08:34 - 16:48",
                            "08:34 - 16:48",
                            "08:34 - 16:48"
                        ]
                    },
                    {
                        "days": "5",
                        "times": [
                            "06:56 - 12:33",
                            "06:56 - 12:33",
                            "06:56 - 12:33"
                        ]
                    }
                ]
            }
        ],
        "contact": {
            "address": {
                "street": "Sint-Denijslaan",
                "nr": "96",
                "zipcode": "9000",
                "city": "Gent",
                "country": "BE"
            },
            "telephone": "+32 475 00 00 00",
            "vat": "BE0123.456.789",
            "social": {
                "facebook": "https://example.com",
                "twitter": "https://example.com",
                "snapchat": "https://example.com",
                "instagram": "https://example.com",
                "pinterest": "https://example.com",
                "youtube": "https://example.com"
            },
            "website": "https://example.com",
            "email": "example@domain.com"
        },
        "messages": [
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            }
        ],
        "info": [
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            },
            {
                "name": "...",
                "title": "...",
                "text": "...",
                "type": "HTML"
            }
        ],
        "status": {
            "open": {
                "status": "closes-soon",
                "text": "..."
            },
            "takeout": "...",
            "delivery": "...",
            "latch": "..."
        },
        "has_specialties": false,
        "currency": "EUR"
    }
]
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.8.0 stable