---
title: INCreateNoteIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/increatenoteintenthandling
---

# INCreateNoteIntentHandling

The handler interface for creating notes.

## Declaration

```swift
protocol INCreateNoteIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INCreateNoteIntentHandling protocol to resolve, confirm, and handle requests to create notes. Adopt this protocol in an object of your Intents extension that is capable of forwarding the note content to your app or note management service. Siri delivers an INCreateNoteIntent object to your handler when the user asks to create a note using your app. The provided intent object contains the information to put into the note. Use the methods of this protocol to resolve the parameters and create the note.

## Topics

### Resolving the Intent Parameters

- [resolveTitle(for:with:)](intents/increatenoteintenthandling/resolvetitle(for:with:).md)
- [resolveContent(for:with:)](intents/increatenoteintenthandling/resolvecontent(for:with:).md)
- [resolveGroupName(for:with:)](intents/increatenoteintenthandling/resolvegroupname(for:with:).md)

### Confirming the Response

- [confirm(intent:completion:)](intents/increatenoteintenthandling/confirm(intent:completion:).md)

### Handling the Intent

- [handle(intent:completion:)](intents/increatenoteintenthandling/handle(intent:completion:).md)

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INNotebookDomainHandling](intents/innotebookdomainhandling.md)

## See Also

### Note Creation

- [INCreateNoteIntent](intents/increatenoteintent.md)
- [INCreateNoteIntentResponse](intents/increatenoteintentresponse.md)
