Select a Store for Dine-in, Takeout or Catering Pickup

This guide explains how to build a Store Finder experience that allows your customer to start their ordering process for Dine-in, Takeout or Catering Pickup.

Customer Location

In order to search for Venues (Stores / Locations), a pair of location coordinates is required. You can either collect location coordinates from the customer device's GPS or, in case the customer does not want to share their location, you can fetch Manual Locations that have been pre-configured for the Brand through the CMS / Management Center.

Fetching Manual Locations from /manual-location-inputs allows you to present a list of pre-defined locations to the customer, from which they can choose the Location (Region / City) that is closest to them:

Request

{
  "method": "get",
  "url": "https://api-public-playground.menu.app/api/manual-location-inputs",
  "headers": {
    "X-Request-ID": "69da3547-204b-4093-a225-54e084c24215",
    "Application": "f3a90488ffee32c3acb6fcd0ca417cf6",
    "Api-Version": 4.38.0,
  }
}

Response

{
    "status": "OK",
    "code": 200,
    "data": {
        "manual_location_inputs": [
            {
                "id": "8b670ca5-23ad-4594-b22a-5ea977855429",
                "name": "Austin",
                "latitude": 30.269711,
                "longitude": -97.747511,
                "position": 1,
                "translations": {
                    "name": "Austin"
                },
                "created_at": "2023-08-05 18:59:57",
                "updated_at": "2023-08-05 18:59:57"
            },
            {
                "id": "c58b4272-2474-4e62-b15b-f3e030524f8d",
                "name": "Dallas",
                "latitude": 32.778721,
                "longitude": -96.802334,
                "position": 2,
                "translations": {
                    "name": "Dallas"
                },
                "created_at": "2023-08-05 19:00:40",
                "updated_at": "2023-08-05 19:00:40"
            },
            {
                "id": "464d8458-043d-4bdf-afae-ce01cd896a21",
                "name": "San Francisco",
                "latitude": 37.774451,
                "longitude": -122.419061,
                "position": 3,
                "translations": {
                    "name": "San Francisco"
                },
                "created_at": "2023-08-05 19:01:20",
                "updated_at": "2023-08-05 19:01:20"
            }
        ]
    }
}
Attribute Type Example Value Description
manual_location_inputs array[ManualLocationInput] Array of ManualLocationInputs that have been configured in the CMS / Management Center for the Brand
manual_location_inputs.[i].name string "San Francisco" Name of the Manual Location (in default language of brand)
manual_location_inputs.[i].translations.name string "San Francisco" Manual location name (to be presented to the customer) - based on Content-Language HTTP header
manual_location_inputs.[i].latitude float 37.774451 Latitude of the Manual Location - used in subsequent API calls
manual_location_inputs.[i].longitude array[string] -122.419061 Longitude of the Manual Location - used in subsequent API calls

latitude and longitude are used to make subsequent API calls that require location coordinates. See here to learn how to configure Manual Locations in the CMS.

Retrieve Venues (Stores / Locations) based on Customer Location

Once the customer has shared their location or has chosen a Manual Location, you can proceed to retrieving a list of Venues based on the location.

The /directory/search call allows you to specify location coordinates and retrieve a list of Venues in close proximity (pagination example ?per_page=10&page=2):

Request

Attribute Type Example Value Description
latitude float 37.774451 Latitude of customer location or manual input location
longitude float -122.419061 Longitude of customer location or manual input location
order_type int (optional) 6 Can be used optionally to filter only for Venues that have a specific order type enabled - See Order Types reference
{
  "method": "post",
  "url": "https://api-public-playground.menu.app/api/directory/search",
  "headers": {
    "X-Request-ID": "69da3547-204b-4093-a225-54e084c24215",
    "Application": "f3a90488ffee32c3acb6fcd0ca417cf6",
    "Api-Version": 4.38.0,
    "Content-Type": "application/json"
  },
  "body": {
    "latitude": 37.774451, 
    "longitude": -122.419061,
    "order_type": 6
  }
}

Response

{
    "status": "OK",
    "code": 200,
    "data": {
        "venues": [
            {
                "distance": 494.74,
                "distance_in_miles": 0.31,
                "venue": {
                    "id": "a9d6d0c8-1689-4114-b1ec-6da9c33f0384",
                    "uuid": "a9d6d0c8-1689-4114-b1ec-6da9c33f0384",
                    "name": "Kauwela San Francisco 5",
                    "code": "3342",
                    "currency_id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                    "language_id": 1,
                    "external_dlc_id": null,
                    "serving_time_mode": 1,
                    "brand_id": "de3a0527-7e4c-4888-91de-71b6d29efa74",
                    "timezone": {
                        "name": "America/Los_Angeles",
                        "offset": "-07:00"
                    },
                    "description": "",
                    "kiosk_receipt_footer": "",
                    "imprint": "",
                    "welcome_message": "welcome_message welcome_messagewelcome_message",
                    "translations": {
                        "description": "",
                        "kiosk_receipt_footer": null,
                        "welcome_message": "welcome_message welcome_messagewelcome_message"
                    },
                    "address": "798 Brannan St",
                    "state": 1,
                    "city": "San Francisco",
                    "zip": "94103",
                    "latitude": 37.7737509,
                    "longitude": -122.4135012,
                    "tax_number": "123XYZ234",
                    "phone": "134829481",
                    "price_configuration": {
                        "order_types": [
                            {
                                "type_id": 1,
                                "price_configuration": null
                            },
                            {
                                "type_id": 4,
                                "price_configuration": null
                            },
                            {
                                "type_id": 6,
                                "price_configuration": null
                            },
                            {
                                "type_id": 7,
                                "price_configuration": 3
                            },
                            {
                                "type_id": 8,
                                "price_configuration": null
                            },
                            {
                                "type_id": 9,
                                "price_configuration": null
                            }
                        ],
                        "external_channels": []
                    },
                    "used_price_configurations": [
                        3
                    ],
                    "cuisine": "",
                    "store_url": "",
                    "is_shown_in_directory": true,
                    "allow_item_comments": false,
                    "tip_default": 5,
                    "tip_max": 15,
                    "service_charge": 0,
                    "pickup_time": 5,
                    "is_pickup_on_open_allowed": false,
                    "calculation_method": "exclusive",
                    "image": {
                        "thumbnail_small": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/_thumbs280/2023-07-27/5ffd72acf623047511e49a2f91e19a55.jpeg",
                        "thumbnail_medium": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/_thumbs720/2023-07-27/5ffd72acf623047511e49a2f91e19a55.jpeg",
                        "fullsize": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/2023-07-27/5ffd72acf623047511e49a2f91e19a55.jpeg"
                    },
                    "available_payment_methods": [
                        {
                            "payment_method_id": "e3423d4d-7200-4c16-a154-a51fb2695838",
                            "payment_method_type_id": 1,
                            "payment_method_brand": "Visa",
                            "payment_processor_type_id": 32,
                            "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                            "properties": null,
                            "fraud_detection_processor_id": null,
                            "visibility_scopes": null
                        },
                        {
                            "payment_method_id": "ea1ac590-b980-4d79-9376-9411fae5ff11",
                            "payment_method_type_id": 1,
                            "payment_method_brand": "MasterCard",
                            "payment_processor_type_id": 32,
                            "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                            "properties": null,
                            "fraud_detection_processor_id": null,
                            "visibility_scopes": null
                        },
                        {
                            "payment_method_id": "8f78d853-2ad1-4371-9a47-68ca18f291cf",
                            "payment_method_type_id": 1,
                            "payment_method_brand": "Amex",
                            "payment_processor_type_id": 32,
                            "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                            "properties": null,
                            "fraud_detection_processor_id": null,
                            "visibility_scopes": null
                        },
                        {
                            "payment_method_id": "e7ac7117-13ba-4da3-a7f2-142cba95eb48",
                            "payment_method_type_id": 1,
                            "payment_method_brand": "Diners Club",
                            "payment_processor_type_id": 32,
                            "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                            "properties": null,
                            "fraud_detection_processor_id": null,
                            "visibility_scopes": null
                        }
                    ],
                    "country": {
                        "id": "5123365b-2d43-45bf-8418-21dcacc595ef",
                        "currency_id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                        "name": "American Samoa",
                        "code": "AS",
                        "code_alpha3": "ASM",
                        "code_numeric": "016",
                        "calling_code": "+1-684",
                        "distance_unit": "km",
                        "is_address_number_first": false,
                        "currency_settings": {
                            "currency_space": true,
                            "decimal_separator": ".",
                            "thousands_separator": ",",
                            "symbol_position": "left"
                        },
                        "supported_travel_modes": [
                            "driving"
                        ],
                        "available_payment_methods": []
                    },
                    "currency": {
                        "id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                        "code": "EUR",
                        "code_numeric": "978",
                        "symbol": "€",
                        "rounding_unit": 0.01,
                        "rounding_unit_tip": 0.01
                    },
                    "order_types": [
                        {
                            "id": "b3265e27-eef5-425d-8f21-0f9780ff6236",
                            "type_id": 6,
                            "reference_type": "OrderTypeTakeOut",
                            "state": 1,
                            "is_table_supported": false,
                            "external_channel_only": false,
                            "tip_default": 5,
                            "tip_max": 15
                        },
                        {
                            "id": "5514ba04-70d9-47f8-826d-7c22deff741a",
                            "type_id": 8,
                            "reference_type": "OrderTypeCurbside",
                            "state": 1,
                            "is_table_supported": false,
                            "external_channel_only": false,
                            "tip_default": 5,
                            "tip_max": 15
                        },
                        {
                            "id": "a20372c5-d989-4d20-b64c-141f558f499e",
                            "type_id": 9,
                            "reference_type": "OrderTypeFoodspot",
                            "state": 1,
                            "is_table_supported": false,
                            "external_channel_only": false,
                            "tip_default": 0,
                            "tip_max": 0
                        }
                    ],
                    "temporary_updated_entities": [],
                    "serving_times": [
                        {
                            "id": "c10c64f8-f2e6-4bce-9834-3df8b5a672b0",
                            "type_id": 2,
                            "reference_type": "WeekDays",
                            "time_from": null,
                            "time_to": null,
                            "delivery_at": null,
                            "days": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                0
                            ]
                        }
                    ],
                    "is_open": true,
                    "will_open": true,
                    "has_discounts": true,
                    "has_loyalty": true,
                    "has_promotions": true,
                    "has_delivery_integration": false,
                    "delivery_integration_properties": null,
                    "delivery_travel_type": "driving",
                    "is_calculated_delivery_buffer_used": false,
                    "is_monitoring_enabled": false,
                    "is_threeds_enabled": false,
                    "is_fraud_detection_enabled": false,
                    "is_smart_orders_enabled": false,
                    "use_pos_order_number": false,
                    "has_uc_capacity_management": false,
                    "kiosk_face_count": null,
                    "is_order_regret_enabled": false,
                    "is_billable": true,
                    "default_delivery_buffer": 20,
                    "integration": {
                        "id": "361cc1a1-ca5d-451c-a893-3963c2efd0d7",
                        "type_id": 1,
                        "reference_type": "Plain",
                        "is_windows_pos": false,
                        "pos_modifier_group_type": 1,
                        "support_combo_meals": false,
                        "max_comment_limit": 0,
                        "allow_multiple_days_in_advance": true
                    },
                    "created_at": "2023-07-24 13:54:56",
                    "updated_at": "2023-08-04 09:52:41",
                    "areas": [
                        {
                            "id": "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                            "type_id": 4,
                            "reference_type": "AreaTakeOut",
                            "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                            "singular_point_id": "db2f3288-63f4-4939-81f6-d0351bce9c70",
                            "pos_id": null,
                            "name": "takeout",
                            "use_tablet": true,
                            "state": 1,
                            "is_table_supported": 0,
                            "properties": {
                                "location_type": "table"
                            },
                            "order_types": [
                                {
                                    "id": "b3265e27-eef5-425d-8f21-0f9780ff6236",
                                    "type_id": 6,
                                    "reference_type": "OrderTypeTakeOut",
                                    "state": 1,
                                    "is_table_supported": null,
                                    "external_channel_only": false,
                                    "tip_default": 5,
                                    "tip_max": 15
                                }
                            ],
                            "table_pos_id": null,
                            "tablet": {
                                "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                                "name": "SF tablet",
                                "use_notifications": 0,
                                "show_kiosk_orders": false,
                                "kiosk_notification_type": 0,
                                "middleware_endpoint": null,
                                "pls_name": null,
                                "state": 3,
                                "is_online": false,
                                "last_request_at": null,
                                "failure_reported": false,
                                "is_critical": false,
                                "area_ids": [
                                    "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                                    "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                                    "c2e6402c-518f-4d54-8830-6d818b25b608"
                                ],
                                "allow_disable_product": false
                            }
                        },
                        {
                            "id": "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                            "type_id": 6,
                            "reference_type": "AreaCurbside",
                            "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                            "singular_point_id": "661f5619-9495-4df0-94f0-a1e3dd552e99",
                            "pos_id": null,
                            "name": "curbside",
                            "use_tablet": true,
                            "state": 1,
                            "is_table_supported": 0,
                            "properties": null,
                            "order_types": [
                                {
                                    "id": "5514ba04-70d9-47f8-826d-7c22deff741a",
                                    "type_id": 8,
                                    "reference_type": "OrderTypeCurbside",
                                    "state": 1,
                                    "is_table_supported": null,
                                    "external_channel_only": false,
                                    "tip_default": 5,
                                    "tip_max": 15
                                }
                            ],
                            "table_pos_id": null,
                            "tablet": {
                                "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                                "name": "SF tablet",
                                "use_notifications": 0,
                                "show_kiosk_orders": false,
                                "kiosk_notification_type": 0,
                                "middleware_endpoint": null,
                                "pls_name": null,
                                "state": 3,
                                "is_online": false,
                                "last_request_at": null,
                                "failure_reported": false,
                                "is_critical": false,
                                "area_ids": [
                                    "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                                    "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                                    "c2e6402c-518f-4d54-8830-6d818b25b608"
                                ],
                                "allow_disable_product": false
                            }
                        },
                        {
                            "id": "c2e6402c-518f-4d54-8830-6d818b25b608",
                            "type_id": 7,
                            "reference_type": "AreaFoodspot",
                            "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                            "singular_point_id": "d24c7292-455f-447c-8434-3d42da923a5d",
                            "pos_id": null,
                            "name": "FoodSpot",
                            "use_tablet": true,
                            "state": 1,
                            "is_table_supported": 0,
                            "properties": null,
                            "order_types": [
                                {
                                    "id": "a20372c5-d989-4d20-b64c-141f558f499e",
                                    "type_id": 9,
                                    "reference_type": "OrderTypeFoodspot",
                                    "state": 1,
                                    "is_table_supported": null,
                                    "external_channel_only": false,
                                    "tip_default": 0,
                                    "tip_max": 0
                                }
                            ],
                            "table_pos_id": null,
                            "tablet": {
                                "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                                "name": "SF tablet",
                                "use_notifications": 0,
                                "show_kiosk_orders": false,
                                "kiosk_notification_type": 0,
                                "middleware_endpoint": null,
                                "pls_name": null,
                                "state": 3,
                                "is_online": false,
                                "last_request_at": null,
                                "failure_reported": false,
                                "is_critical": false,
                                "area_ids": [
                                    "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                                    "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                                    "c2e6402c-518f-4d54-8830-6d818b25b608"
                                ],
                                "allow_disable_product": false
                            }
                        }
                    ],
                    "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                    "days_in_advance": 0,
                    "payment_processors": [
                        {
                            "id": 3288,
                            "venue_id": 3342,
                            "payment_method_type_id": 1,
                            "payment_processor_id": 3866,
                            "properties": null
                        }
                    ]
                }
            },
            {
                "distance": 2072.66,
                "distance_in_miles": 1.29,
                "venue": {
                    "id": "67984194-717f-46e7-aca6-03a7b64009f3",
                    "uuid": "67984194-717f-46e7-aca6-03a7b64009f3",
                    "name": "Kauwela San Francisco 4",
                    "code": "3341",
                    "currency_id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                    "language_id": 1,
                    "external_dlc_id": null,
                    "serving_time_mode": 1,
                    "brand_id": "de3a0527-7e4c-4888-91de-71b6d29efa74",
                    "timezone": {
                        "name": "America/Los_Angeles",
                        "offset": "-07:00"
                    },
                    "description": "",
                    "kiosk_receipt_footer": "",
                    "imprint": "",
                    "welcome_message": "welcome_message welcome_messagewelcome_message",
                    "translations": {
                        "description": "",
                        "kiosk_receipt_footer": null,
                        "welcome_message": "welcome_message welcome_messagewelcome_message"
                    },
                    "address": "3515 20th St",
                    "state": 1,
                    "city": "San Francisco",
                    "zip": "94110",
                    "latitude": 37.7558409,
                    "longitude": -122.4203925,
                    "tax_number": "123XYZ234",
                    "phone": "134829481",
                    "price_configuration": {
                        "order_types": [
                            {
                                "type_id": 1,
                                "price_configuration": null
                            },
                            {
                                "type_id": 4,
                                "price_configuration": null
                            },
                            {
                                "type_id": 6,
                                "price_configuration": null
                            },
                            {
                                "type_id": 7,
                                "price_configuration": 3
                            },
                            {
                                "type_id": 8,
                                "price_configuration": null
                            },
                            {
                                "type_id": 9,
                                "price_configuration": null
                            }
                        ],
                        "external_channels": []
                    },
                    "used_price_configurations": [
                        3
                    ],
                    "cuisine": "",
                    "store_url": "",
                    "is_shown_in_directory": true,
                    "allow_item_comments": false,
                    "tip_default": 2,
                    "tip_max": 15,
                    "service_charge": 0,
                    "pickup_time": 5,
                    "is_pickup_on_open_allowed": false,
                    "calculation_method": "exclusive",
                    "image": {
                        "thumbnail_small": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/_thumbs280/2023-07-27/3494efb97c741996b588fe535bb7d13e.jpeg",
                        "thumbnail_medium": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/_thumbs720/2023-07-27/3494efb97c741996b588fe535bb7d13e.jpeg",
                        "fullsize": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/2023-07-27/3494efb97c741996b588fe535bb7d13e.jpeg"
                    },
                    "available_payment_methods": [
                        {
                            "payment_method_id": "e3423d4d-7200-4c16-a154-a51fb2695838",
                            "payment_method_type_id": 1,
                            "payment_method_brand": "Visa",
                            "payment_processor_type_id": 32,
                            "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                            "properties": null,
                            "fraud_detection_processor_id": null,
                            "visibility_scopes": null
                        },
                        {
                            "payment_method_id": "ea1ac590-b980-4d79-9376-9411fae5ff11",
                            "payment_method_type_id": 1,
                            "payment_method_brand": "MasterCard",
                            "payment_processor_type_id": 32,
                            "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                            "properties": null,
                            "fraud_detection_processor_id": null,
                            "visibility_scopes": null
                        },
                        {
                            "payment_method_id": "8f78d853-2ad1-4371-9a47-68ca18f291cf",
                            "payment_method_type_id": 1,
                            "payment_method_brand": "Amex",
                            "payment_processor_type_id": 32,
                            "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                            "properties": null,
                            "fraud_detection_processor_id": null,
                            "visibility_scopes": null
                        }
                    ],
                    "country": {
                        "id": "5123365b-2d43-45bf-8418-21dcacc595ef",
                        "currency_id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                        "name": "American Samoa",
                        "code": "AS",
                        "code_alpha3": "ASM",
                        "code_numeric": "016",
                        "calling_code": "+1-684",
                        "distance_unit": "km",
                        "is_address_number_first": false,
                        "currency_settings": {
                            "currency_space": true,
                            "decimal_separator": ".",
                            "thousands_separator": ",",
                            "symbol_position": "left"
                        },
                        "supported_travel_modes": [
                            "driving"
                        ],
                        "available_payment_methods": []
                    },
                    "currency": {
                        "id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                        "code": "EUR",
                        "code_numeric": "978",
                        "symbol": "€",
                        "rounding_unit": 0.01,
                        "rounding_unit_tip": 0.01
                    },
                    "order_types": [
                        {
                            "id": "12bf5e15-694e-45b8-aed1-45050e847853",
                            "type_id": 4,
                            "reference_type": "OrderTypePreorder",
                            "state": 1,
                            "is_table_supported": false,
                            "external_channel_only": false,
                            "tip_default": 0,
                            "tip_max": 0
                        },
                        {
                            "id": "8627a8be-e4d8-435f-b020-4c10f3de9007",
                            "type_id": 6,
                            "reference_type": "OrderTypeTakeOut",
                            "state": 1,
                            "is_table_supported": false,
                            "external_channel_only": false,
                            "tip_default": 0,
                            "tip_max": 0
                        },
                        {
                            "id": "b948b08e-355d-4048-92c3-e7c565801b6b",
                            "type_id": 7,
                            "reference_type": "OrderTypeDelivery",
                            "state": 1,
                            "is_table_supported": false,
                            "external_channel_only": false,
                            "tip_default": 2,
                            "tip_max": 15
                        }
                    ],
                    "temporary_updated_entities": [],
                    "serving_times": [
                        {
                            "id": "5dfcc93b-7d32-45ba-b5f2-d32dc7ae3f72",
                            "type_id": 2,
                            "reference_type": "WeekDays",
                            "time_from": null,
                            "time_to": null,
                            "delivery_at": null,
                            "days": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                0
                            ]
                        }
                    ],
                    "is_open": true,
                    "will_open": true,
                    "has_discounts": true,
                    "has_loyalty": true,
                    "has_promotions": true,
                    "has_delivery_integration": true,
                    "delivery_integration_properties": {
                        "restaurant_id": "3341"
                    },
                    "delivery_travel_type": "driving",
                    "is_calculated_delivery_buffer_used": false,
                    "is_monitoring_enabled": false,
                    "is_threeds_enabled": false,
                    "is_fraud_detection_enabled": false,
                    "is_smart_orders_enabled": false,
                    "use_pos_order_number": false,
                    "has_uc_capacity_management": false,
                    "kiosk_face_count": null,
                    "is_order_regret_enabled": false,
                    "is_billable": true,
                    "default_delivery_buffer": 15,
                    "integration": {
                        "id": "43cfe9bd-1bc7-47b2-a192-fee21cb3b2e4",
                        "type_id": 1,
                        "reference_type": "Plain",
                        "is_windows_pos": false,
                        "pos_modifier_group_type": 1,
                        "support_combo_meals": false,
                        "max_comment_limit": 0,
                        "allow_multiple_days_in_advance": true
                    },
                    "created_at": "2023-07-24 13:54:42",
                    "updated_at": "2023-08-04 09:52:41",
                    "areas": [
                        {
                            "id": "75516f2f-69d3-4603-824d-896f34e9e266",
                            "type_id": 4,
                            "reference_type": "AreaTakeOut",
                            "menu_id": "4c092b16-6e6c-4477-9927-4b029d0735a6",
                            "singular_point_id": "a16e309d-fb5e-475d-9383-d3a34afe9406",
                            "pos_id": null,
                            "name": "takeout",
                            "use_tablet": true,
                            "state": 1,
                            "is_table_supported": 0,
                            "properties": {
                                "location_type": "table"
                            },
                            "order_types": [
                                {
                                    "id": "8627a8be-e4d8-435f-b020-4c10f3de9007",
                                    "type_id": 6,
                                    "reference_type": "OrderTypeTakeOut",
                                    "state": 1,
                                    "is_table_supported": null,
                                    "external_channel_only": false,
                                    "tip_default": 0,
                                    "tip_max": 0
                                }
                            ],
                            "table_pos_id": null,
                            "tablet": {
                                "id": "5a278144-927a-43cc-890e-2d3a6f583c60",
                                "name": "SF tablet",
                                "use_notifications": 0,
                                "show_kiosk_orders": false,
                                "kiosk_notification_type": 0,
                                "middleware_endpoint": null,
                                "pls_name": null,
                                "state": 3,
                                "is_online": false,
                                "last_request_at": null,
                                "failure_reported": false,
                                "is_critical": false,
                                "area_ids": [
                                    "75516f2f-69d3-4603-824d-896f34e9e266",
                                    "2f02ecbd-0cfd-4054-9bbb-ac6445a57fd6",
                                    "e13ca919-016a-4748-9ea4-a17b26cb2b3b"
                                ],
                                "allow_disable_product": false
                            }
                        },
                        {
                            "id": "2f02ecbd-0cfd-4054-9bbb-ac6445a57fd6",
                            "type_id": 5,
                            "reference_type": "AreaDelivery",
                            "menu_id": "4c092b16-6e6c-4477-9927-4b029d0735a6",
                            "singular_point_id": "061fa11e-3b69-482b-9ed8-2d951f2c5788",
                            "pos_id": null,
                            "name": "delivery",
                            "use_tablet": true,
                            "state": 1,
                            "is_table_supported": 0,
                            "properties": null,
                            "order_types": [
                                {
                                    "id": "b948b08e-355d-4048-92c3-e7c565801b6b",
                                    "type_id": 7,
                                    "reference_type": "OrderTypeDelivery",
                                    "state": 1,
                                    "is_table_supported": null,
                                    "external_channel_only": false,
                                    "tip_default": 2,
                                    "tip_max": 15
                                }
                            ],
                            "delivery_area_maps": [
                                {
                                    "minimal_order_amount": 1500,
                                    "name": "SF",
                                    "coordinate_polygon": [
                                        [
                                            [
                                                -122.45275871617471,
                                                37.777042543444026
                                            ],
                                            [
                                                -122.38847153050745,
                                                37.77853502205501
                                            ],
                                            [
                                                -122.3705329166168,
                                                37.73978866119312
                                            ],
                                            [
                                                -122.43550674779314,
                                                37.743793165739575
                                            ],
                                            [
                                                -122.45275871617471,
                                                37.777042543444026
                                            ]
                                        ]
                                    ],
                                    "radius": null,
                                    "state": 1,
                                    "created_at": "2023-07-27 12:37:41",
                                    "updated_at": "2023-07-27 12:37:41",
                                    "delivery_fee": {
                                        "type_id": 1,
                                        "reference_type": "DeliveryFeeFixed",
                                        "price": 0,
                                        "price_per_unit": 0,
                                        "unit": "kilometer",
                                        "created_at": "2023-07-27 12:37:36",
                                        "updated_at": "2023-07-27 12:37:36"
                                    }
                                }
                            ],
                            "delivery_times": [
                                {
                                    "id": "d994fe70-0ee9-43fa-8f69-efe5ab6f3e78",
                                    "type_id": 2,
                                    "reference_type": "WeekDays",
                                    "time_from": null,
                                    "time_to": null,
                                    "delivery_at": null,
                                    "days": [
                                        1,
                                        2,
                                        3,
                                        4,
                                        5,
                                        6,
                                        0
                                    ]
                                }
                            ],
                            "tablet": {
                                "id": "5a278144-927a-43cc-890e-2d3a6f583c60",
                                "name": "SF tablet",
                                "use_notifications": 0,
                                "show_kiosk_orders": false,
                                "kiosk_notification_type": 0,
                                "middleware_endpoint": null,
                                "pls_name": null,
                                "state": 3,
                                "is_online": false,
                                "last_request_at": null,
                                "failure_reported": false,
                                "is_critical": false,
                                "area_ids": [
                                    "75516f2f-69d3-4603-824d-896f34e9e266",
                                    "2f02ecbd-0cfd-4054-9bbb-ac6445a57fd6",
                                    "e13ca919-016a-4748-9ea4-a17b26cb2b3b"
                                ],
                                "allow_disable_product": false
                            }
                        },
                        {
                            "id": "e13ca919-016a-4748-9ea4-a17b26cb2b3b",
                            "type_id": 3,
                            "reference_type": "AreaQuickService",
                            "menu_id": "4c092b16-6e6c-4477-9927-4b029d0735a6",
                            "singular_point_id": "15b0345f-7e86-4f94-8242-5f8d9e04d647",
                            "pos_id": null,
                            "name": "quick service",
                            "use_tablet": true,
                            "state": 1,
                            "is_table_supported": 0,
                            "properties": {
                                "location_type": "table"
                            },
                            "order_types": [
                                {
                                    "id": "12bf5e15-694e-45b8-aed1-45050e847853",
                                    "type_id": 4,
                                    "reference_type": "OrderTypePreorder",
                                    "state": 1,
                                    "is_table_supported": null,
                                    "external_channel_only": false,
                                    "tip_default": 0,
                                    "tip_max": 0
                                }
                            ],
                            "table_pos_id": null,
                            "tablet": {
                                "id": "5a278144-927a-43cc-890e-2d3a6f583c60",
                                "name": "SF tablet",
                                "use_notifications": 0,
                                "show_kiosk_orders": false,
                                "kiosk_notification_type": 0,
                                "middleware_endpoint": null,
                                "pls_name": null,
                                "state": 3,
                                "is_online": false,
                                "last_request_at": null,
                                "failure_reported": false,
                                "is_critical": false,
                                "area_ids": [
                                    "75516f2f-69d3-4603-824d-896f34e9e266",
                                    "2f02ecbd-0cfd-4054-9bbb-ac6445a57fd6",
                                    "e13ca919-016a-4748-9ea4-a17b26cb2b3b"
                                ],
                                "allow_disable_product": false
                            }
                        }
                    ],
                    "menu_id": "4c092b16-6e6c-4477-9927-4b029d0735a6",
                    "days_in_advance": 0,
                    "payment_processors": [
                        {
                            "id": 3287,
                            "venue_id": 3341,
                            "payment_method_type_id": 1,
                            "payment_processor_id": 3866,
                            "properties": null
                        }
                    ]
                }
            }]
    }
}
Attribute Type Example Value Description
venues array Array of Venues (sorted by distance) that are close to the given location coordinates (maximum of 50 Venues)
venues.[i].distance float 494.74 Distance in meters (bird-eye view) between given location coordinates and Venue
venues.[i].distance_in_miles float 0.31 Distance in miles (bird-eye view) between given location coordinates and Venue
venues.[i].venue Venue object Venue object
venues.[i].venue.id string a9d6d0c8-1689-4114-b1ec-6da9c33f0384 UUID of Venue
venues.[i].venue.name string "Kauwela San Francisco 5" Name of Venue (to be presented to customer)
venues.[i].venue.state int 1 Current status of Venue - refer to States reference. Can be used to determine how Venue should be presented to the customer.
venues.[i].venue.description string "Visit our new location on Brannan St!" Description that has been configured in CMS / Management Center (in brand default language)
venues.[i].venue.translations.description string "Visit our new location on Brannan St!" Description (can be presented to customer) that has been configured in CMS / Management Center - based on language provided in Content-Language HTTP header
venues.[i].venue.address string "798 Brannan St" Street name (incl. street number) configured for the Venue in the CMS / Management Center
venues.[i].venue.city string "San Francisco" City name configured for the Venue in the CMS / Management Center
venues.[i].venue.zip string "94103" ZIP code configured for the Venue in the CMS / Management Center
venues.[i].venue.latitude float 37.7737509 Latitude configured for the Venue in the CMS / Management Center
venues.[i].venue.longitude float -122.4135012 Longitude configured for the Venue in the CMS / Management Center
venues.[i].venue.serving_time_mode int 1 possible values are 1 and 2. 1 = Brands allow for orders to be ordered prepped and delivered/picked up within serving times. 2 = Brands allow for customer to order up to serving times cut off irrespective of prep + drive time etc.
venues.[i].venue.serving_times array[ServingTimes] See Serving Times reference
venues.[i].venue.serving_times.[i].type_id int 2 Type of Serving Time - either 1 Special Days or 2 Week Days
venues.[i].venue.serving_times.[i].time_from string or null "06:30" Starting time of Serving Time
venues.[i].venue.serving_times.[i].time_to string or null "23:00" Ending time of Serving Time
venues.[i].venue.serving_times.[i].date string "2023-08-31" Starting date of Serving Time (for 1 Special Days)
venues.[i].venue.serving_times.[i].date_to int "2023-08-31" Ending date of Serving Time (for 1 Special Days) - can be same date, in which case special serving times are only valid for that specific date
venues.[i].venue.serving_times.[i].working bool true Whether the resource is available that date / date range or not (for 1 Special Days). In case of false, time_from and time_to of the Serving Time will always be null
venues.[i].venue.serving_times.[i].days array[int] [1,2] Array of Day of the Week IDs that this Serving Time applies to (for 2 Week Days)
venues.[i].venue.is_open bool true Defines whether the Venue is currently open or not
venues.[i].venue.will_open bool true Defines whether the Venue will open later today
venues.[i].venue.order_types array[OrderType] Order Types that are configured for the Venue
venues.[i].venue.order_types.[i].type_id int 1 Type of Order Types - see Order Types reference
venues.[i].venue.order_types.[i].state int 1 Current status of Order Type - refer to States reference. Only enabled order types should be presented to the customer.
venues.[i].venue.order_types.[i].tip_default int 15 Default tip percentage that should be pre-selected for customer on slider
venues.[i].venue.order_types.[i].tip_max int 25 Maximum tip percentage for tip slider
venues.[i].venue.order_types.[i].pickup_time int 15 Venue's current preparation time (in minutes - to be presented to the customer)
venues.[i].venue.order_types.[i].available_payment_methods array[PaymentMethod] PaymentMethods enabled for the Venue
venues.[i].venue.order_types.[i].allow_item_comments bool true Whether the Venue allows customers to add item comments
venues.[i].venue.order_types.[i].integration.max_comment_limit int 50 Maximum number of characters for an item comment (depending on POS integration)
venues.[i].venue.areas array[Area] See Areas reference
venues.[i].venue.areas.type_id int 4 Type ID of Area - see Areas reference
venues.[i].venue.areas.singular_point_id int db2f3288-63f4-4939-81f6-d0351bce9c70 Singular Point ID, which will be used for placing the order
venues.[i].venue.areas.state int 1 Current status of Area - refer to States reference
venues.[i].venue.areas.order_types array[OrderType] Array of OrderTypes that are configured for that Area
venues.[i].venue.areas.order_types.[i].type_id int 4 Type of Order Types - see Order Types reference
venues.[i].venue.is_shown_in_directory bool true Defines whether the store will be shown in the Store Finder - if false the Venue will not be returned by the /directory/search API, so no additional filtering is required

Select one Venue

When the customer has chosen a store, another call to get the details of that specific Venue can be made.

The /venues/{venue_uuid} call allows you to fetch all details of a specific Venue by UUID:

Request

{
  "method": "get",
  "url": "https://api-public-playground.menu.app/api/venues/{venue_uuid}",
  "headers": {
    "X-Request-ID": "69da3547-204b-4093-a225-54e084c24215",
    "Application": "f3a90488ffee32c3acb6fcd0ca417cf6",
    "Api-Version": 4.38.0
  }
}

Response

{
    "status": "OK",
    "code": 200,
    "data": {
        "venue": {
            "id": "a9d6d0c8-1689-4114-b1ec-6da9c33f0384",
            "uuid": "a9d6d0c8-1689-4114-b1ec-6da9c33f0384",
            "name": "Kauwela San Francisco 5",
            "code": "3342",
            "currency_id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
            "language_id": 1,
            "external_dlc_id": null,
            "serving_time_mode": 1,
            "brand_id": "de3a0527-7e4c-4888-91de-71b6d29efa74",
            "timezone": {
                "name": "America/Los_Angeles",
                "offset": "-07:00"
            },
            "description": "",
            "kiosk_receipt_footer": "",
            "imprint": "",
            "welcome_message": "welcome_message welcome_messagewelcome_message",
            "translations": {
                "description": "",
                "kiosk_receipt_footer": null,
                "welcome_message": "welcome_message welcome_messagewelcome_message"
            },
            "address": "798 Brannan St",
            "state": 1,
            "city": "San Francisco",
            "zip": "94103",
            "latitude": 37.7737509,
            "longitude": -122.4135012,
            "tax_number": "123XYZ234",
            "phone": "134829481",
            "price_configuration": {
                "order_types": [
                    {
                        "type_id": 1,
                        "price_configuration": null
                    },
                    {
                        "type_id": 4,
                        "price_configuration": null
                    },
                    {
                        "type_id": 6,
                        "price_configuration": null
                    },
                    {
                        "type_id": 7,
                        "price_configuration": 3
                    },
                    {
                        "type_id": 8,
                        "price_configuration": null
                    },
                    {
                        "type_id": 9,
                        "price_configuration": null
                    }
                ],
                "external_channels": []
            },
            "used_price_configurations": [
                3
            ],
            "cuisine": "",
            "store_url": "",
            "is_shown_in_directory": true,
            "allow_item_comments": false,
            "tip_default": 5,
            "tip_max": 15,
            "service_charge": 0,
            "pickup_time": 5,
            "is_pickup_on_open_allowed": false,
            "calculation_method": "exclusive",
            "image": {
                "thumbnail_small": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/_thumbs280/2023-07-27/5ffd72acf623047511e49a2f91e19a55.jpeg",
                "thumbnail_medium": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/_thumbs720/2023-07-27/5ffd72acf623047511e49a2f91e19a55.jpeg",
                "fullsize": "https://s3.eu-central-1.amazonaws.com/api.playground/images/venue_images/2023-07-27/5ffd72acf623047511e49a2f91e19a55.jpeg"
            },
            "available_payment_methods": [
                {
                    "payment_method_id": "e3423d4d-7200-4c16-a154-a51fb2695838",
                    "payment_method_type_id": 1,
                    "payment_method_brand": "Visa",
                    "payment_processor_type_id": 32,
                    "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                    "properties": null,
                    "fraud_detection_processor_id": null,
                    "visibility_scopes": null
                },
                {
                    "payment_method_id": "ea1ac590-b980-4d79-9376-9411fae5ff11",
                    "payment_method_type_id": 1,
                    "payment_method_brand": "MasterCard",
                    "payment_processor_type_id": 32,
                    "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                    "properties": null,
                    "fraud_detection_processor_id": null,
                    "visibility_scopes": null
                },
                {
                    "payment_method_id": "8f78d853-2ad1-4371-9a47-68ca18f291cf",
                    "payment_method_type_id": 1,
                    "payment_method_brand": "Amex",
                    "payment_processor_type_id": 32,
                    "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                    "properties": null,
                    "fraud_detection_processor_id": null,
                    "visibility_scopes": null
                },
                {
                    "payment_method_id": "e7ac7117-13ba-4da3-a7f2-142cba95eb48",
                    "payment_method_type_id": 1,
                    "payment_method_brand": "Diners Club",
                    "payment_processor_type_id": 32,
                    "payment_processor_id": "5bab16ce-bb27-4e62-aff4-124266647eaf",
                    "properties": null,
                    "fraud_detection_processor_id": null,
                    "visibility_scopes": null
                }
            ],
            "country": {
                "id": "5123365b-2d43-45bf-8418-21dcacc595ef",
                "currency_id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                "name": "American Samoa",
                "code": "AS",
                "code_alpha3": "ASM",
                "code_numeric": "016",
                "calling_code": "+1-684",
                "distance_unit": "km",
                "is_address_number_first": false,
                "currency_settings": {
                    "currency_space": true,
                    "decimal_separator": ".",
                    "thousands_separator": ",",
                    "symbol_position": "left"
                },
                "supported_travel_modes": [
                    "driving"
                ],
                "available_payment_methods": []
            },
            "currency": {
                "id": "692f600e-3e2a-4c43-9bed-66e5a23473bc",
                "code": "EUR",
                "code_numeric": "978",
                "symbol": "€",
                "rounding_unit": 0.01,
                "rounding_unit_tip": 0.01
            },
            "order_types": [
                {
                    "id": "81035813-b64f-4776-8a6c-ef00043aff05",
                    "type_id": 1,
                    "reference_type": "OrderTypeDineIn",
                    "state": 1,
                    "is_table_supported": true,
                    "external_channel_only": false,
                    "tip_default": 0,
                    "tip_max": 0
                },
                {
                    "id": "aaa1ae2f-6bbf-4547-b722-61375cf1f835",
                    "type_id": 4,
                    "reference_type": "OrderTypePreorder",
                    "state": 1,
                    "is_table_supported": false,
                    "external_channel_only": false,
                    "tip_default": 0,
                    "tip_max": 0
                },
                {
                    "id": "b3265e27-eef5-425d-8f21-0f9780ff6236",
                    "type_id": 6,
                    "reference_type": "OrderTypeTakeOut",
                    "state": 1,
                    "is_table_supported": false,
                    "external_channel_only": false,
                    "tip_default": 5,
                    "tip_max": 15
                },
                {
                    "id": "3ca0c042-4a89-43fa-b197-7820a2818782",
                    "type_id": 7,
                    "reference_type": "OrderTypeDelivery",
                    "state": 1,
                    "is_table_supported": false,
                    "external_channel_only": false,
                    "tip_default": 0,
                    "tip_max": 0
                },
                {
                    "id": "5514ba04-70d9-47f8-826d-7c22deff741a",
                    "type_id": 8,
                    "reference_type": "OrderTypeCurbside",
                    "state": 1,
                    "is_table_supported": false,
                    "external_channel_only": false,
                    "tip_default": 5,
                    "tip_max": 15
                },
                {
                    "id": "a20372c5-d989-4d20-b64c-141f558f499e",
                    "type_id": 9,
                    "reference_type": "OrderTypeFoodspot",
                    "state": 1,
                    "is_table_supported": false,
                    "external_channel_only": false,
                    "tip_default": 0,
                    "tip_max": 0
                }
            ],
            "temporary_updated_entities": [],
            "serving_times": [
                {
                    "id": "219f26ca-2ccc-4433-b099-dcb4147cc512",
                    "type_id": 2,
                    "reference_type": "WeekDays",
                    "time_from": "06:30",
                    "time_to": "23:00",
                    "delivery_at": null,
                    "days": [
                        1,
                        2,
                        3,
                        4,
                        5
                    ]
                },
                {
                    "id": "60931918-f682-4e4a-a9db-65ae8d3d9d1f",
                    "type_id": 1,
                    "reference_type": "SpecialDays",
                    "time_from": null,
                    "time_to": null,
                    "delivery_at": null,
                    "date": "2023-08-31",
                    "date_to": "2023-08-31",
                    "working": false
                },
                {
                    "id": "4adfb91d-19a0-4313-8b42-86c96b3a737e",
                    "type_id": 1,
                    "reference_type": "SpecialDays",
                    "time_from": "08:00",
                    "time_to": "13:00",
                    "delivery_at": null,
                    "date": "2023-09-01",
                    "date_to": "2023-09-05",
                    "working": true
                }
            ],
            "is_open": false,
            "will_open": false,
            "has_discounts": true,
            "has_loyalty": true,
            "has_promotions": true,
            "has_delivery_integration": false,
            "delivery_integration_properties": null,
            "delivery_travel_type": "driving",
            "is_calculated_delivery_buffer_used": false,
            "is_monitoring_enabled": false,
            "is_threeds_enabled": false,
            "is_fraud_detection_enabled": false,
            "is_smart_orders_enabled": false,
            "use_pos_order_number": false,
            "has_uc_capacity_management": false,
            "kiosk_face_count": null,
            "is_order_regret_enabled": false,
            "is_billable": true,
            "default_delivery_buffer": 20,
            "integration": {
                "id": "361cc1a1-ca5d-451c-a893-3963c2efd0d7",
                "type_id": 1,
                "reference_type": "Plain",
                "is_windows_pos": false,
                "pos_modifier_group_type": 1,
                "support_combo_meals": false,
                "max_comment_limit": 0,
                "allow_multiple_days_in_advance": true
            },
            "created_at": "2023-07-24 13:54:56",
            "updated_at": "2023-08-05 22:34:33",
            "areas": [
                {
                    "id": "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                    "type_id": 4,
                    "reference_type": "AreaTakeOut",
                    "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                    "singular_point_id": "db2f3288-63f4-4939-81f6-d0351bce9c70",
                    "pos_id": null,
                    "name": "takeout",
                    "use_tablet": true,
                    "state": 1,
                    "is_table_supported": 0,
                    "properties": {
                        "location_type": "table"
                    },
                    "order_types": [
                        {
                            "id": "b3265e27-eef5-425d-8f21-0f9780ff6236",
                            "type_id": 6,
                            "reference_type": "OrderTypeTakeOut",
                            "state": 1,
                            "is_table_supported": null,
                            "external_channel_only": false,
                            "tip_default": 5,
                            "tip_max": 15
                        }
                    ],
                    "table_pos_id": null,
                    "tablet": {
                        "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                        "name": "SF tablet",
                        "use_notifications": 0,
                        "show_kiosk_orders": false,
                        "kiosk_notification_type": 0,
                        "middleware_endpoint": null,
                        "pls_name": null,
                        "state": 3,
                        "is_online": false,
                        "last_request_at": null,
                        "failure_reported": false,
                        "is_critical": false,
                        "area_ids": [
                            "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                            "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                            "c2e6402c-518f-4d54-8830-6d818b25b608",
                            "2b7a5795-965a-4258-9f0d-8c9a987d0e26",
                            "181cbf5d-580c-4fb5-8391-79e850715872"
                        ],
                        "allow_disable_product": false
                    }
                },
                {
                    "id": "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                    "type_id": 6,
                    "reference_type": "AreaCurbside",
                    "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                    "singular_point_id": "661f5619-9495-4df0-94f0-a1e3dd552e99",
                    "pos_id": null,
                    "name": "curbside",
                    "use_tablet": true,
                    "state": 1,
                    "is_table_supported": 0,
                    "properties": null,
                    "order_types": [
                        {
                            "id": "5514ba04-70d9-47f8-826d-7c22deff741a",
                            "type_id": 8,
                            "reference_type": "OrderTypeCurbside",
                            "state": 1,
                            "is_table_supported": null,
                            "external_channel_only": false,
                            "tip_default": 5,
                            "tip_max": 15
                        }
                    ],
                    "table_pos_id": null,
                    "tablet": {
                        "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                        "name": "SF tablet",
                        "use_notifications": 0,
                        "show_kiosk_orders": false,
                        "kiosk_notification_type": 0,
                        "middleware_endpoint": null,
                        "pls_name": null,
                        "state": 3,
                        "is_online": false,
                        "last_request_at": null,
                        "failure_reported": false,
                        "is_critical": false,
                        "area_ids": [
                            "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                            "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                            "c2e6402c-518f-4d54-8830-6d818b25b608",
                            "2b7a5795-965a-4258-9f0d-8c9a987d0e26",
                            "181cbf5d-580c-4fb5-8391-79e850715872"
                        ],
                        "allow_disable_product": false
                    }
                },
                {
                    "id": "c2e6402c-518f-4d54-8830-6d818b25b608",
                    "type_id": 7,
                    "reference_type": "AreaFoodspot",
                    "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                    "singular_point_id": "d24c7292-455f-447c-8434-3d42da923a5d",
                    "pos_id": null,
                    "name": "FoodSpot",
                    "use_tablet": true,
                    "state": 1,
                    "is_table_supported": 0,
                    "properties": null,
                    "order_types": [
                        {
                            "id": "a20372c5-d989-4d20-b64c-141f558f499e",
                            "type_id": 9,
                            "reference_type": "OrderTypeFoodspot",
                            "state": 1,
                            "is_table_supported": null,
                            "external_channel_only": false,
                            "tip_default": 0,
                            "tip_max": 0
                        }
                    ],
                    "table_pos_id": null,
                    "tablet": {
                        "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                        "name": "SF tablet",
                        "use_notifications": 0,
                        "show_kiosk_orders": false,
                        "kiosk_notification_type": 0,
                        "middleware_endpoint": null,
                        "pls_name": null,
                        "state": 3,
                        "is_online": false,
                        "last_request_at": null,
                        "failure_reported": false,
                        "is_critical": false,
                        "area_ids": [
                            "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                            "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                            "c2e6402c-518f-4d54-8830-6d818b25b608",
                            "2b7a5795-965a-4258-9f0d-8c9a987d0e26",
                            "181cbf5d-580c-4fb5-8391-79e850715872"
                        ],
                        "allow_disable_product": false
                    }
                },
                {
                    "id": "175cff75-3f8f-4908-bde7-74d1f8c6a542",
                    "type_id": 1,
                    "reference_type": "AreaFullService",
                    "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                    "singular_point_id": "93397e8d-d889-4e6b-8764-fa3ecfbfe8bf",
                    "pos_id": null,
                    "name": "Full Service",
                    "use_tablet": false,
                    "state": 1,
                    "is_table_supported": 1,
                    "properties": {
                        "location_type": "table"
                    },
                    "order_types": [
                        {
                            "id": "81035813-b64f-4776-8a6c-ef00043aff05",
                            "type_id": 1,
                            "reference_type": "OrderTypeDineIn",
                            "state": 1,
                            "is_table_supported": null,
                            "external_channel_only": false,
                            "tip_default": 0,
                            "tip_max": 0
                        }
                    ],
                    "singular_point_input_type": "ManualInput"
                },
                {
                    "id": "2b7a5795-965a-4258-9f0d-8c9a987d0e26",
                    "type_id": 3,
                    "reference_type": "AreaQuickService",
                    "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                    "singular_point_id": "a1bb94d6-b4bb-4938-8388-1e63075afe4f",
                    "pos_id": null,
                    "name": "Quick Service",
                    "use_tablet": true,
                    "state": 1,
                    "is_table_supported": 0,
                    "properties": {
                        "location_type": "table"
                    },
                    "order_types": [
                        {
                            "id": "aaa1ae2f-6bbf-4547-b722-61375cf1f835",
                            "type_id": 4,
                            "reference_type": "OrderTypePreorder",
                            "state": 1,
                            "is_table_supported": null,
                            "external_channel_only": false,
                            "tip_default": 0,
                            "tip_max": 0
                        }
                    ],
                    "table_pos_id": null,
                    "tablet": {
                        "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                        "name": "SF tablet",
                        "use_notifications": 0,
                        "show_kiosk_orders": false,
                        "kiosk_notification_type": 0,
                        "middleware_endpoint": null,
                        "pls_name": null,
                        "state": 3,
                        "is_online": false,
                        "last_request_at": null,
                        "failure_reported": false,
                        "is_critical": false,
                        "area_ids": [
                            "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                            "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                            "c2e6402c-518f-4d54-8830-6d818b25b608",
                            "2b7a5795-965a-4258-9f0d-8c9a987d0e26",
                            "181cbf5d-580c-4fb5-8391-79e850715872"
                        ],
                        "allow_disable_product": false
                    }
                },
                {
                    "id": "181cbf5d-580c-4fb5-8391-79e850715872",
                    "type_id": 5,
                    "reference_type": "AreaDelivery",
                    "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
                    "singular_point_id": "63b07572-302f-4c77-ba23-18b048fac9b9",
                    "pos_id": null,
                    "name": "Delivery",
                    "use_tablet": true,
                    "state": 1,
                    "is_table_supported": 0,
                    "properties": null,
                    "order_types": [
                        {
                            "id": "3ca0c042-4a89-43fa-b197-7820a2818782",
                            "type_id": 7,
                            "reference_type": "OrderTypeDelivery",
                            "state": 1,
                            "is_table_supported": null,
                            "external_channel_only": false,
                            "tip_default": 0,
                            "tip_max": 0
                        }
                    ],
                    "delivery_area_maps": [
                        {
                            "minimal_order_amount": 2000,
                            "name": "Zone 1",
                            "coordinate_polygon": [
                                [
                                    [
                                        -122.41478866031048,
                                        37.786212408637766
                                    ],
                                    [
                                        -122.39770835330202,
                                        37.78153183822485
                                    ],
                                    [
                                        -122.40809386661071,
                                        37.75676736819847
                                    ],
                                    [
                                        -122.43779128482215,
                                        37.75893883148851
                                    ],
                                    [
                                        -122.41478866031048,
                                        37.786212408637766
                                    ]
                                ]
                            ],
                            "radius": null,
                            "state": 1,
                            "created_at": "2023-08-05 22:21:54",
                            "updated_at": "2023-08-05 22:21:54",
                            "delivery_fee": {
                                "type_id": 1,
                                "reference_type": "DeliveryFeeFixed",
                                "price": 150,
                                "price_per_unit": 0,
                                "unit": "kilometer",
                                "created_at": "2023-08-05 22:21:33",
                                "updated_at": "2023-08-05 22:21:33"
                            }
                        },
                        {
                            "minimal_order_amount": null,
                            "name": "Zone 2",
                            "coordinate_polygon": [
                                [
                                    [
                                        -122.464913782376,
                                        37.75547803172418
                                    ],
                                    [
                                        -122.43015235354434,
                                        37.74665565298056
                                    ],
                                    [
                                        -122.39324515749658,
                                        37.75235638718793
                                    ],
                                    [
                                        -122.39556258608592,
                                        37.790757026685185
                                    ],
                                    [
                                        -122.40431731631512,
                                        37.79672565261811
                                    ],
                                    [
                                        -122.45487159183062,
                                        37.79638653906568
                                    ],
                                    [
                                        -122.464913782376,
                                        37.75547803172418
                                    ]
                                ],
                                [
                                    [
                                        -122.43779128482215,
                                        37.75893883148851
                                    ],
                                    [
                                        -122.40809386661071,
                                        37.75676736819847
                                    ],
                                    [
                                        -122.39770835330202,
                                        37.78153183822485
                                    ],
                                    [
                                        -122.41478866031048,
                                        37.786212408637766
                                    ],
                                    [
                                        -122.43779128482215,
                                        37.75893883148851
                                    ]
                                ]
                            ],
                            "radius": null,
                            "state": 1,
                            "created_at": "2023-08-05 22:21:54",
                            "updated_at": "2023-08-05 22:21:54",
                            "delivery_fee": {
                                "type_id": 2,
                                "reference_type": "DeliveryFeeDistance",
                                "price": 0,
                                "price_per_unit": 200,
                                "unit": "kilometer",
                                "created_at": "2023-08-05 22:21:48",
                                "updated_at": "2023-08-05 22:21:48"
                            }
                        }
                    ],
                    "delivery_times": [
                        {
                            "id": "8b644f29-1604-47ac-9623-2e6b0596c9c2",
                            "type_id": 2,
                            "reference_type": "WeekDays",
                            "time_from": "09:30",
                            "time_to": "21:30",
                            "delivery_at": null,
                            "days": [
                                1,
                                2,
                                3,
                                4,
                                5
                            ]
                        },
                        {
                            "id": "aa5eac96-99fa-483a-99f2-9c5f2b9a784a",
                            "type_id": 1,
                            "reference_type": "SpecialDays",
                            "time_from": null,
                            "time_to": null,
                            "delivery_at": null,
                            "date": "2023-08-31",
                            "date_to": "2023-08-31",
                            "working": false
                        },
                        {
                            "id": "7e328d69-18d8-4f73-8726-39e27d8ef9e2",
                            "type_id": 1,
                            "reference_type": "SpecialDays",
                            "time_from": "04:00",
                            "time_to": "14:00",
                            "delivery_at": null,
                            "date": "2023-09-01",
                            "date_to": "2023-09-05",
                            "working": true
                        }
                    ],
                    "tablet": {
                        "id": "fdca7af8-1650-48dd-9481-df8059f33517",
                        "name": "SF tablet",
                        "use_notifications": 0,
                        "show_kiosk_orders": false,
                        "kiosk_notification_type": 0,
                        "middleware_endpoint": null,
                        "pls_name": null,
                        "state": 3,
                        "is_online": false,
                        "last_request_at": null,
                        "failure_reported": false,
                        "is_critical": false,
                        "area_ids": [
                            "41d2dcf0-5e59-4204-b28d-67f03fcd4d91",
                            "b39d789b-ecad-455a-a8d2-ad5bfa4e43d0",
                            "c2e6402c-518f-4d54-8830-6d818b25b608",
                            "2b7a5795-965a-4258-9f0d-8c9a987d0e26",
                            "181cbf5d-580c-4fb5-8391-79e850715872"
                        ],
                        "allow_disable_product": false
                    }
                }
            ],
            "menu_id": "899129db-5b88-4c95-8fe2-972e6faec523",
            "days_in_advance": 0,
            "payment_processors": [
                {
                    "id": 3288,
                    "venue_id": 3342,
                    "payment_method_type_id": 1,
                    "payment_processor_id": 3866,
                    "properties": null
                }
            ]
        }
    }
}

Next Steps

After you have selected a Venue, you can proceed with Displaying the Menu.