<!--
{
  "availability" : [
    "iOS: 11.0.0 - 15.0.0",
    "iPadOS: 11.0.0 - 15.0.0",
    "macCatalyst: 13.1.0 - 15.0.0",
    "visionOS: 1.0.0 - 1.0.0",
    "watchOS: 4.0.0 - 8.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INAppendToNoteIntentHandling",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INAppendToNoteIntentHandling"
  },
  "title" : "INAppendToNoteIntentHandling"
}
-->

# INAppendToNoteIntentHandling

The handler interface for appending content to a note.

```
protocol INAppendToNoteIntentHandling : NSObjectProtocol
```

## Overview

Use the methods of the [`INAppendToNoteIntentHandling`](/documentation/Intents/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`](/documentation/Intents/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

[`func resolveContent(for: INAppendToNoteIntent, with: (INNoteContentResolutionResult) -> Void)`](/documentation/Intents/INAppendToNoteIntentHandling/resolveContent(for:with:))

Resolves the content to append to the note.

[`func resolveTargetNote(for: INAppendToNoteIntent, with: (INNoteResolutionResult) -> Void)`](/documentation/Intents/INAppendToNoteIntentHandling/resolveTargetNote(for:with:))

Resolves the note that receives the new content.

### Confirming the Response

[`func confirm(intent: INAppendToNoteIntent, completion: (INAppendToNoteIntentResponse) -> Void)`](/documentation/Intents/INAppendToNoteIntentHandling/confirm(intent:completion:))

Confirms whether you can append content to the note.

### Handling the Intent

[`func handle(intent: INAppendToNoteIntent, completion: (INAppendToNoteIntentResponse) -> Void)`](/documentation/Intents/INAppendToNoteIntentHandling/handle(intent:completion:))

Handles appending content to a note.

## Relationships

### Inherited By

[`INNotebookDomainHandling`](/documentation/Intents/INNotebookDomainHandling)

### Inherits From

[`NSObjectProtocol`](/documentation/ObjectiveC/NSObjectProtocol)

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)