---
title: INCreateNoteIntent
framework: intents
role: symbol
role_heading: Class
path: intents/increatenoteintent
---

# INCreateNoteIntent

A request to create a new note.

## Declaration

```swift
class INCreateNoteIntent
```

## Overview

Overview Siri creates an INCreateNoteIntent object when the user asks to create a new note. (If the user asks to add a task and none of your Intents app extensions declare support for the INAddTasksIntent class, SiriKit uses this intent as a substitute). The intent object contains the content of the note and possibly additional information, such as the name of the folder in which to create the note. To handle this intent, the handler object in your Intents extension must adopt the INCreateNoteIntentHandling protocol. Your handler should confirm the request and create an INCreateNoteIntentResponse object with the updated note. Additional Intent Attributes The following table lists additional attributes of this intent object:  |   |   |  Example Phrases Users can ask Siri to create notes in a variety of ways. The table below provides a few sample phrases in different languages. You can use these phrases during testing to trigger your intents. This list is not exhaustive and Siri may recognize many other phrases.  |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |   |  |  In the preceding examples, <appName> represents the name of the app whose Intents extension handles the request.

## Topics

### Initializing the Intent Object

- [init(title:content:groupName:)](intents/increatenoteintent/init(title:content:groupname:).md)

### Getting the Note Content

- [title](intents/increatenoteintent/title.md)
- [content](intents/increatenoteintent/content.md)
- [groupName](intents/increatenoteintent/groupname.md)

## Relationships

### Inherits From

- [INIntent](intents/inintent.md)

### Conforms To

- [CVarArg](swift/cvararg.md)
- [CustomDebugStringConvertible](swift/customdebugstringconvertible.md)
- [CustomStringConvertible](swift/customstringconvertible.md)
- [Equatable](swift/equatable.md)
- [Hashable](swift/hashable.md)
- [INIntentSetImageKeyPath](intents/inintentsetimagekeypath.md)
- [NSCoding](foundation/nscoding.md)
- [NSCopying](foundation/nscopying.md)
- [NSObjectProtocol](objectivec/nsobjectprotocol.md)
- [NSSecureCoding](foundation/nssecurecoding.md)

## See Also

### Note Creation

- [INCreateNoteIntentHandling](intents/increatenoteintenthandling.md)
- [INCreateNoteIntentResponse](intents/increatenoteintentresponse.md)
