---
title: "resolveProfileName(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insetprofileincarintenthandling/resolveprofilename(for:with:)"
---

# resolveProfileName(for:with:)

Resolves the profile name from which to retrieve settings.

## Declaration

```swift
optional func resolveProfileName(for intent: INSetProfileInCarIntent, with completion: @escaping @Sendable (INStringResolutionResult) -> Void)
```

```swift
optional func resolveProfileName(for intent: INSetProfileInCarIntent) async -> INStringResolutionResult
```

## 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 block to execute with the resolution. You must execute this block at some point during your implementation of this method. This block has no return value and takes the following parameter:

## Discussion

Discussion Implement this method to validate the profile name supplied by the user. If you don’t implement this method, SiriKit assumes that you’re able to set the profile using the specified name.

## See Also

### Resolving the Intent Parameters

- [resolveProfileNumber(for:with:)](intents/insetprofileincarintenthandling/resolveprofilenumber(for:with:).md)
- [resolveCarName(for:with:)](intents/insetprofileincarintenthandling/resolvecarname(for:with:).md)
- [resolveDefaultProfile(forSetProfileInCar:with:)](intents/insetprofileincarintenthandling/resolvedefaultprofile(forsetprofileincar:with:).md)
