---
title: INDeleteTasksIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/indeletetasksintenthandling
---

# INDeleteTasksIntentHandling

An interface that handles requests to delete tasks from a task list.

## Declaration

```swift
protocol INDeleteTasksIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INDeleteTasksIntentHandling protocol to resolve, confirm, and handle requests to delete tasks from a task list. Adopt this protocol in an object of your Intents extension capable of handling the request directly or forwarding the request to your app or task management service. Siri delivers an INDeleteTasksIntent object to your handler when the user asks to delete tasks from a task list in your app. The provided intent object contains descriptions of the tasks and any triggers to associate with each task. Use the methods of this protocol to resolve the parameters and delete the tasks.

## Topics

### Resolving Details of the Intent

- [resolveTaskList(for:with:)](intents/indeletetasksintenthandling/resolvetasklist(for:with:).md)
- [resolveTasks(for:with:)](intents/indeletetasksintenthandling/resolvetasks(for:with:).md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

## See Also

### Task Deletion

- [INDeleteTasksIntent](intents/indeletetasksintent.md)
- [INDeleteTasksIntentResponse](intents/indeletetasksintentresponse.md)
- [INDeleteTasksTaskListResolutionResult](intents/indeletetaskstasklistresolutionresult.md)
- [INDeleteTasksTaskResolutionResult](intents/indeletetaskstaskresolutionresult.md)
