---
title: "resolveMediaItems(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insearchformediaintenthandling/resolvemediaitems(for:with:)"
---

# resolveMediaItems(for:with:)

Resolves the media items for which to search.

## Declaration

```swift
optional func resolveMediaItems(for intent: INSearchForMediaIntent, with completion: @escaping @Sendable ([INSearchForMediaMediaItemResolutionResult]) -> Void)
```

```swift
optional func resolveMediaItems(for intent: INSearchForMediaIntent) async -> [INSearchForMediaMediaItemResolutionResult]
```

## Parameters

- `intent`: The intent object that contains 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 while implementing this method. This block has no return value and takes the following parameter:

## Discussion

Discussion Implement this method to resolve the media items for which to search. Always strive toward a successful resolution to the specific media items, but feel free to ask for confirmation of the selected media items if there’s some uncertainty about whether your app found the correct media. If you find multiple media items matching the same name, consider asking the user to disambiguate from among the most likely candidates. note: Don’t ask users for confirmation or disambiguation too often as users may become frustrated and exit Siri.
