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

# handle(getAvailableRestaurantReservationBookingDefaults:completion:)

Handles returning the default values to use when pre-fetching reservations.

```
func handle(getAvailableRestaurantReservationBookingDefaults intent: INGetAvailableRestaurantReservationBookingDefaultsIntent, completion: @escaping @Sendable (INGetAvailableRestaurantReservationBookingDefaultsIntentResponse) -> 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 [`INGetAvailableRestaurantReservationBookingDefaultsIntentResponse`](/documentation/Intents/INGetAvailableRestaurantReservationBookingDefaultsIntentResponse) object you create to report the status of the request. This parameter must not be `nil`.

## Discussion

Your implementation of this method should construct a response object containing the default values to use. Use the information in the `intent` parameter to fetch any restaurant-specific information. 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)