<!--
{
  "availability" : [
    "iOS: 11.0.0 - 27.0.0",
    "iPadOS: 11.0.0 - 27.0.0",
    "macCatalyst: 13.1.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0",
    "watchOS: 4.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INCreateNoteIntentResponse/init(code:userActivity:)",
  "metadataVersion" : "0.1.0",
  "role" : "Initializer",
  "symbol" : {
    "kind" : "Initializer",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(cs)INCreateNoteIntentResponse(im)initWithCode:userActivity:"
  },
  "title" : "init(code:userActivity:)"
}
-->

# init(code:userActivity:)

Initializes the response object with the specified code and user activity object.

```
init(code: INCreateNoteIntentResponseCode, userActivity: NSUserActivity?)
```

## Parameters

`code`

The response code indicating your success or failure in handling the intent. For a list of possible values, see [`INCreateNoteIntentResponseCode`](/documentation/Intents/INCreateNoteIntentResponseCode).

`userActivity`

The user activity object to use when launching your app. Provide an object if you want to add app-specific information. If you specify `nil`, the system automatically creates a user activity object for you, sets its type to the class name of the intent being handled, and fills it with an [`INInteraction`](/documentation/Intents/INInteraction) object containing the intent and your response.

## Return Value

An initialized response object or `nil` if the object could not be created.

## Discussion

After initializing the response object, put the note details into the [`createdNote`](/documentation/Intents/INCreateNoteIntentResponse/createdNote) property of the object.

When your app creates the note successfully, Siri displays information about the created note to the user. If the user chooses to view the new note in your app, SiriKit does not launch your app using the value in the `userActivity` parameter. Instead, SiriKit creates a new <doc://com.apple.documentation/documentation/Foundation/NSUserActivity> object whose interaction property contains an [`INSearchForNotebookItemsIntent`](/documentation/Intents/INSearchForNotebookItemsIntent) object. The value of that intent’s [`notebookItemIdentifier`](/documentation/Intents/INSearchForNotebookItemsIntent/notebookItemIdentifier) property is the identifier of the note that you provided in the [`createdNote`](/documentation/Intents/INCreateNoteIntentResponse/createdNote) property of your response object.

---

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)