get_booking_instructions
Obtain step-by-step instructions for making a reservation at a specific restaurant using the Google Places ID, available in multiple locales for user convenience.
Instructions
Get instructions on how to make a reservation at a specific restaurant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locale | No | Locale for booking instructions (e.g., "en", "zh-TW", "ja", "ko") | en |
placeId | Yes | Google Places ID of the restaurant |
Input Schema (JSON Schema)
{
"properties": {
"locale": {
"default": "en",
"description": "Locale for booking instructions (e.g., \"en\", \"zh-TW\", \"ja\", \"ko\")",
"type": "string"
},
"placeId": {
"description": "Google Places ID of the restaurant",
"type": "string"
}
},
"required": [
"placeId"
],
"type": "object"
}