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

# handle(getRestaurantGuest:completion:)

Handles returning the information about the user making the reservation.

```
func handle(getRestaurantGuest intent: INGetRestaurantGuestIntent, completion: @escaping @Sendable (INGetRestaurantGuestIntentResponse) -> Void)
```

## Parameters

`intent`

The intent object containing details about the request. The information in this object has already been 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 [`INGetRestaurantGuestIntentResponse`](/documentation/Intents/INGetRestaurantGuestIntentResponse) object you create to report the status of the request. This parameter must not be `nil`.

## Discussion

In your implementation of this method, you should create an [`INRestaurantGuest`](/documentation/Intents/INRestaurantGuest) object containing the current user’s information and assign it to your response object. You should also create an [`INRestaurantGuestDisplayPreferences`](/documentation/Intents/INRestaurantGuestDisplayPreferences) object and specify the options for displaying the user’s 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)