---
title: "resolveAccountNickname(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insearchforaccountsintenthandling/resolveaccountnickname(for:with:)"
---

# resolveAccountNickname(for:with:)

Resolves the account nickname to use during a search.

## Declaration

```swift
optional func resolveAccountNickname(for intent: INSearchForAccountsIntent, with completion: @escaping @Sendable (INSpeakableStringResolutionResult) -> Void)
```

```swift
optional func resolveAccountNickname(for intent: INSearchForAccountsIntent) async -> INSpeakableStringResolutionResult
```

## 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 resolve any questions about the account nickname used during a search. Use this method to examine the accountNickname property of the intent object. Return a resolution of success if you can perform the search using the specified nickname. If the property does not contain a value, return a resolution of success or not required based if you can use other information in the intent object to perform the search.

## See Also

### Resolving the Intent Parameters

- [resolveAccountType(for:with:)](intents/insearchforaccountsintenthandling/resolveaccounttype(for:with:).md)
- [resolveOrganizationName(for:with:)](intents/insearchforaccountsintenthandling/resolveorganizationname(for:with:).md)
- [resolveRequestedBalanceType(for:with:)](intents/insearchforaccountsintenthandling/resolverequestedbalancetype(for:with:).md)
