---
title: INStartAudioCallIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/instartaudiocallintenthandling
---

# INStartAudioCallIntentHandling

The handler interface for initiating an audio call from your app.

## Declaration

```swift
protocol INStartAudioCallIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INStartAudioCallIntentHandling protocol to resolve, confirm, and handle requests to start an audio-only call with the designated users. Adopt this protocol in an object of your Intents extension that’s capable of validating the call information. Don’t try to initiate the call directly in your Intents app extension. Instead, a successful response involves asking Siri to launch your app to begin the call. Siri delivers an INStartAudioCallIntent 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 contacts to call and to validate that your app can place the call successfully.

## Topics

### Resolving the Intent Parameters

- [resolveContacts(for:with:)](intents/instartaudiocallintenthandling/resolvecontacts(for:with:).md)
- [resolveDestinationType(for:with:)](intents/instartaudiocallintenthandling/resolvedestinationtype(for:with:).md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INCallsDomainHandling](intents/incallsdomainhandling.md)

## See Also

### Audio Call Initiation

- [INStartAudioCallIntent](intents/instartaudiocallintent.md)
- [INStartAudioCallIntentResponse](intents/instartaudiocallintentresponse.md)
