---
title: "confirmationRequired(with:)"
framework: intents
role: symbol
role_heading: Type Method
path: "intents/innoteresolutionresult/confirmationrequired(with:)"
---

# confirmationRequired(with:)

Creates an object whose resolution requires confirmation from the user before proceeding.

## Declaration

```swift
class func confirmationRequired(with noteToConfirm: INNote?) -> Self
```

## Parameters

- `noteToConfirm`: The object that resolves the request but must be confirmed by the user.

## Return Value

Return Value A new INNoteResolutionResult object.

## Discussion

Discussion Use this method when you locate a single note but cannot determine with enough certainty that it is the one intended by the user. For example, you might ask for confirmation when the note text does not match precisely. Provide an INNote object with as much information about the note as you have available.

## See Also

### Creating a Resolution Result Object

- [success(with:)](intents/innoteresolutionresult/success(with:).md)
- [disambiguation(with:)](intents/innoteresolutionresult/disambiguation(with:).md)
