---
title: "handle(getUserCurrentRestaurantReservationBookings:completion:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/ingetusercurrentrestaurantreservationbookingsintenthandling/handle(getusercurrentrestaurantreservationbookings:completion:)"
---

# handle(getUserCurrentRestaurantReservationBookings:completion:)

Handles fetching the user’s current reservations.

## Declaration

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

```swift
func handle(getUserCurrentRestaurantReservationBookings intent: INGetUserCurrentRestaurantReservationBookingsIntent) async -> INGetUserCurrentRestaurantReservationBookingsIntentResponse
```

## 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:

## Discussion

Discussion Your implementation of this method should fetch the user’s current reservations, using the information in the intent parameter to filter the search results. When done, execute the provided block with a response object that contains the appropriate set of reservations.
