book_seats
Reserve selected seats for AMC movie showtimes by providing showtime ID, seat numbers, and user identifier to confirm your booking.
Instructions
Reserves selected seats for the user.
Args: showtime_id: Showtime ID (e.g., "st001") seats: List of seat numbers (e.g., ["A5", "A6"]) user_id: User identifier
Returns: JSON string with booking confirmation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| showtime_id | Yes | ||
| seats | Yes | ||
| user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"seats": {
"items": {
"type": "string"
},
"type": "array"
},
"showtime_id": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"showtime_id",
"seats",
"user_id"
],
"type": "object"
}