<!--
{
  "availability" : [
    "iOS: 10.0.0 -",
    "iPadOS: 10.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 3.2.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INListRideOptionsIntentHandling/resolvePickupLocation(for:with:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INListRideOptionsIntentHandling(im)resolvePickupLocationForListRideOptions:withCompletion:"
  },
  "title" : "resolvePickupLocation(for:with:)"
}
-->

# resolvePickupLocation(for:with:)

Resolves the user’s pickup location.

```
optional func resolvePickupLocation(for intent: INListRideOptionsIntent, with completion: @escaping @Sendable (INPlacemarkResolutionResult) -> Void)
```

## Parameters

`intent`

The intent object containing details about the user’s request. Use this object to get the initial information provided by the user.

`completion`

The block to execute with the resolution. This block has no return value and takes the following parameter:

- resolutionResult: The object containing the details of your proposed resolution. For successful resolutions, create a resolution object with the <doc://com.apple.documentation/documentation/CoreLocation/CLPlacemark> object with the user’s requested pickup location. This parameter must not be `nil`.

## Discussion

Implement this method to verify that you are able to pick up the user at the specified location. If you are unable to pick up the user at the requested location, you can provide a nearby location and ask the user to confirm the new value. You can also provide other resolutions as appropriate.

If you do not implement this method, SiriKit assumes you are able to pick up the user at the specified location.

Maps does not call this method. The Maps interface lets the user specify the pickup location explicitly, making resolution of that value unnecessary.

---

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)