---
title: INCreateTaskListIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/increatetasklistintenthandling
---

# INCreateTaskListIntentHandling

The handler interface for creating task lists.

## Declaration

```swift
protocol INCreateTaskListIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INCreateTaskListIntentHandling protocol to resolve, confirm, and handle requests to create task lists. Adopt this protocol in an object of your Intents extension that’s capable of forwarding the task list information to your app or task management service. Siri delivers an INCreateTaskListIntent object to your handler when the user asks to create a task list using your app. The provided intent object contains the details for the task list, including any initial tasks. Use the methods of this protocol to resolve the parameters and create the task list.

## Topics

### Resolving the Intent Parameters

- [resolveTitle(for:with:)](intents/increatetasklistintenthandling/resolvetitle(for:with:).md)
- [resolveTaskTitles(for:with:)](intents/increatetasklistintenthandling/resolvetasktitles(for:with:).md)
- [resolveGroupName(for:with:)](intents/increatetasklistintenthandling/resolvegroupname(for:with:).md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INNotebookDomainHandling](intents/innotebookdomainhandling.md)

## See Also

### Task List Creation

- [INCreateTaskListIntent](intents/increatetasklistintent.md)
- [INCreateTaskListIntentResponse](intents/increatetasklistintentresponse.md)
