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

# confirm(getUserCurrentRestaurantReservationBookings:completion:)

Confirms whether you can get the user’s current reservations.

```
optional func confirm(getUserCurrentRestaurantReservationBookings intent: INGetUserCurrentRestaurantReservationBookingsIntent, completion: @escaping @Sendable (INGetUserCurrentRestaurantReservationBookingsIntentResponse) -> Void)
```

## Parameters

`intent`

The intent object containing details about the request. The information in this object has already been resolved by your handler object.

`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 [`INGetUserCurrentRestaurantReservationBookingsIntentResponse`](/documentation/Intents/INGetUserCurrentRestaurantReservationBookingsIntentResponse) object containing the status of whether your app is able to get the user’s current reservations. This parameter must not be `nil`.

## Discussion

Implement this method to validate that you can fetch the user’s current reservations. For example, you might use this method to verify the account information for performing the search. At some point in your implementation, execute the provided completion block with a response object indicating your app’s readiness to fetch the reservations.

---

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)