---
title: "resolveGuestProvidedSpecialRequestText(for:completion:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/inbookrestaurantreservationintenthandling/resolveguestprovidedspecialrequesttext(for:completion:)"
---

# resolveGuestProvidedSpecialRequestText(for:completion:)

Resolves any special requests made in connection with the reservation.

## Declaration

```swift
optional func resolveGuestProvidedSpecialRequestText(for intent: INBookRestaurantReservationIntent, completion: @escaping @Sendable (INStringResolutionResult) -> Void)
```

```swift
optional func resolveGuestProvidedSpecialRequestText(for intent: INBookRestaurantReservationIntent) async -> INStringResolutionResult
```

## Parameters

- `intent`: The intent object containing details about the user’s request. Use this object to get the initial information, if any, provided by the user.
- `completion`: The block to execute with the resolution. You must execute this block at some point during your implementation of this method. This block has no return value and takes the following parameter:

## Discussion

Discussion Implement this method to resolve any special requests for the reservation. For example, the guest requires a booster seat for a child or one of the guests has a food allergy.

## See Also

### Resolving the Intent Parameters

- [resolveRestaurant(for:completion:)](intents/inbookrestaurantreservationintenthandling/resolverestaurant(for:completion:).md)
- [resolveBookingDateComponents(for:completion:)](intents/inbookrestaurantreservationintenthandling/resolvebookingdatecomponents(for:completion:).md)
- [resolvePartySize(for:completion:)](intents/inbookrestaurantreservationintenthandling/resolvepartysize(for:completion:).md)
- [resolveGuest(for:completion:)](intents/inbookrestaurantreservationintenthandling/resolveguest(for:completion:).md)
