<!--
{
  "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/INAppendToNoteIntent",
  "metadataVersion" : "0.1.0",
  "role" : "Class",
  "symbol" : {
    "kind" : "Class",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(cs)INAppendToNoteIntent"
  },
  "title" : "INAppendToNoteIntent"
}
-->

# INAppendToNoteIntent

A request to append content to a note.

```
class INAppendToNoteIntent
```

## Overview

Siri creates an [`INAppendToNoteIntent`](/documentation/Intents/INAppendToNoteIntent) object when the user asks to append content to an existing note. The intent object contains the note to modify and the content to add to the note.

To handle this intent, the handler object in your Intents extension must adopt the [`INAppendToNoteIntentHandling`](/documentation/Intents/INAppendToNoteIntentHandling) protocol. Your handler should confirm the request and create an [`INAppendToNoteIntentResponse`](/documentation/Intents/INAppendToNoteIntentResponse) object with the updated note.

### Additional Intent Attributes

The following table lists additional attributes of this intent object:

|Attribute                      |Description |
|-------------------------------|------------|
|Supported by                   |Siri Intents|
|Always requires unlocked device|No          |

If the resolution for any parameter requires disambiguation or confirmation, the user must unlock the device before you handle the intent. If resolution of the parameters doesn’t require user interaction, you can handle the intent without the user unlocking the device.

## Topics

### Initializing the Intent Object

[`init(targetNote: INNote?, content: INNoteContent?)`](/documentation/Intents/INAppendToNoteIntent/init(targetNote:content:))

Initializes the intent object with the specified note and content.

### Getting the Note Content

[`var content: INNoteContent?`](/documentation/Intents/INAppendToNoteIntent/content)

The content to append to the note.

[`var targetNote: INNote?`](/documentation/Intents/INAppendToNoteIntent/targetNote)

The note to receive the additional content.

## Relationships

### Conforms To

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

[`CVarArg`](/documentation/Swift/CVarArg)

[`NSSecureCoding`](/documentation/Foundation/NSSecureCoding)

[`CustomDebugStringConvertible`](/documentation/Swift/CustomDebugStringConvertible)

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

[`Hashable`](/documentation/Swift/Hashable)

[`CustomStringConvertible`](/documentation/Swift/CustomStringConvertible)

[`Equatable`](/documentation/Swift/Equatable)

[`NSCoding`](/documentation/Foundation/NSCoding)

[`NSCopying`](/documentation/Foundation/NSCopying)

### Inherits From

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

---

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)