---
title: "resolveDropOffLocation(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/inrequestrideintenthandling/resolvedropofflocation(for:with:)"
---

# resolveDropOffLocation(for:with:)

Resolves the drop-off location for the ride.

## Declaration

```swift
optional func resolveDropOffLocation(for intent: INRequestRideIntent, with completion: @escaping @Sendable (INPlacemarkResolutionResult) -> Void)
```

```swift
optional func resolveDropOffLocation(for intent: INRequestRideIntent) async -> INPlacemarkResolutionResult
```

## 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 handler block to execute with the resolution. 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 Implement this method to verify that you can drop off the user at the specified location. You may specify a drop-off location that is different than the one requested by the user. For example, you might specify a dedicated drop-off spot or an easy to spot point of interest that is near the user’s requested drop-off location. If you do not implement this method, SiriKit assumes that you are able to end the ride at the specified location. If the drop-off location is outside of your service area, return a successful resolution from this method and then create an appropriate response object with the INRequestRideIntentResponseCode.failureRequiringAppLaunchNoServiceInArea code in your confirm(intent:completion:) method. Maps does not call this method. The Maps interface lets the user specify the drop-off location explicitly, making resolution of that value unnecessary.

## See Also

### Resolving the Intent Parameters

- [resolvePickupLocation(for:with:)](intents/inrequestrideintenthandling/resolvepickuplocation(for:with:).md)
- [resolveScheduledPickupTime(for:with:)](intents/inrequestrideintenthandling/resolvescheduledpickuptime(for:with:).md)
- [resolveRideOptionName(for:with:)](intents/inrequestrideintenthandling/resolverideoptionname(for:with:).md)
- [resolvePartySize(for:with:)](intents/inrequestrideintenthandling/resolvepartysize(for:with:).md)
