<!--
{
  "availability" : [
    "iOS: 10.0.0 -",
    "iPadOS: 10.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INBookRestaurantReservationIntentHandling/handle(bookRestaurantReservation:completion:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INBookRestaurantReservationIntentHandling(im)handleBookRestaurantReservation:completion:"
  },
  "title" : "handle(bookRestaurantReservation:completion:)"
}
-->

# handle(bookRestaurantReservation:completion:)

Handles completing the user’s reservation.

```
func handle(bookRestaurantReservation intent: INBookRestaurantReservationIntent, completion: @escaping @Sendable (INBookRestaurantReservationIntentResponse) -> Void)
```

## Parameters

`intent`

The intent object containing details about the request. The information in this object has already been resolved and confirmed.

`completion`

The handler block to execute with your response. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:

- response: The [`INBookRestaurantReservationIntentResponse`](/documentation/Intents/INBookRestaurantReservationIntentResponse) object you create to report the status of the request. This parameter must not be `nil`.

## Discussion

Your implementation of this method must save the reservation details to your system and communicate the information to the selected restaurant. Your response object should contain a [`INRestaurantReservationUserBooking`](/documentation/Intents/INRestaurantReservationUserBooking) object that reflects the status of creating the reservation, including whether the restaurant has received and confirmed the reservation details. When done, execute the provided block with your response object.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)