---
title: "resolveUnseen(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insearchcallhistoryintenthandling/resolveunseen(for:with:)"
---

# resolveUnseen(for:with:)

Resolves whether you can search for calls that the user hasn’t yet seen.

## Declaration

```swift
optional func resolveUnseen(for intent: INSearchCallHistoryIntent, with completion: @escaping @Sendable (INBooleanResolutionResult) -> Void)
```

```swift
optional func resolveUnseen(for intent: INSearchCallHistoryIntent) async -> INBooleanResolutionResult
```

## 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 let SiriKit know whether you can search for unseen calls. Disambiguation and prompting the user for more information isn’t supported. Your implementation should provide a successful resolution with the requested value.

## See Also

### Resolving the Intent Parameters

- [resolveCallTypes(for:with:)](intents/insearchcallhistoryintenthandling/resolvecalltypes(for:with:).md)
- [resolveCallType(for:with:)](intents/insearchcallhistoryintenthandling/resolvecalltype(for:with:).md)
- [resolveRecipient(for:with:)](intents/insearchcallhistoryintenthandling/resolverecipient(for:with:).md)
- [resolveDateCreated(for:with:)](intents/insearchcallhistoryintenthandling/resolvedatecreated(for:with:).md)
