---
title: INStartCallIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/instartcallintenthandling
---

# INStartCallIntentHandling

An interface that handles requests to start audio and video calls.

## Declaration

```swift
protocol INStartCallIntentHandling : NSObjectProtocol
```

## Mentioned in

Dispatching intents to handlers

## Overview

Overview Use the methods of the INStartCallIntentHandling protocol to resolve, confirm, and handle requests to start an audio or video call with the designated users. Adopt this protocol in an object of your Intents extension that’s capable of validating the call information. Your Intents extension shouldn’t try to initiate the call directly. Instead, a successful response involves asking Siri to launch your app to begin the call. Siri delivers an INStartCallIntent object to your handler when the user asks to initiate a call using your app. The provided intent object contains information about who the user wants to call. Use the methods of this protocol to resolve the list of callable contacts and to validate that your app can place the call successfully.

## Topics

### Resolving the Intent Parameters

- [resolveCallCapability(for:with:)](intents/instartcallintenthandling/resolvecallcapability(for:with:).md)
- [resolveContacts(for:with:)](intents/instartcallintenthandling/resolvecontacts(for:with:).md)
- [resolveDestinationType(for:with:)](intents/instartcallintenthandling/resolvedestinationtype(for:with:).md)
- [resolveCallRecordToCallBack(for:with:)](intents/instartcallintenthandling/resolvecallrecordtocallback(for:with:).md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

## See Also

### Starting a Call

- [INStartCallIntent](intents/instartcallintent.md)
- [INStartCallIntentResponse](intents/instartcallintentresponse.md)
- [INStartCallCallRecordToCallBackUnsupportedReason](intents/instartcallcallrecordtocallbackunsupportedreason.md)
