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

# resolveProfileName(for:with:)

Resolves the profile name in which to save any settings.

## Declaration

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

```swift
optional func resolveProfileName(for intent: INSaveProfileInCarIntent) 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 save the profile using the specified name.

## See Also

### Resolving the Intent Parameters

- [resolveProfileNumber(for:with:)](intents/insaveprofileincarintenthandling/resolveprofilenumber(for:with:).md)
