---
title: INAppendToNoteIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/inappendtonoteintenthandling
---

# INAppendToNoteIntentHandling

The handler interface for appending content to a note.

## Declaration

```swift
protocol INAppendToNoteIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INAppendToNoteIntentHandling protocol to resolve, confirm, and handle requests to append content to an existing note. Adopt this protocol in an object of your Intents extension that’s capable of updating the note content in your app or note management service. Siri delivers an INAppendToNoteIntent object to your handler when the user asks to create a note using your app. The provided intent object contains information about which note to modify and the content to append. Use the methods of this protocol to resolve the parameters and update the note.

## Topics

### Resolving the Intent Parameters

- [resolveContent(for:with:)](intents/inappendtonoteintenthandling/resolvecontent(for:with:).md)
- [resolveTargetNote(for:with:)](intents/inappendtonoteintenthandling/resolvetargetnote(for:with:).md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INNotebookDomainHandling](intents/innotebookdomainhandling.md)

## See Also

### Note Additions

- [INAppendToNoteIntent](intents/inappendtonoteintent.md)
- [INAppendToNoteIntentResponse](intents/inappendtonoteintentresponse.md)
