<!--
{
  "availability" : [
    "iOS: 13.0.0 -",
    "iPadOS: 13.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 12.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 6.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INStartCallIntentHandling/handle(intent:completion:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INStartCallIntentHandling(im)handleStartCall:completion:"
  },
  "title" : "handle(intent:completion:)"
}
-->

# handle(intent:completion:)

Handles handing off the call to your app.

```
func handle(intent: INStartCallIntent, completion: @escaping @Sendable (INStartCallIntentResponse) -> Void)
```

```
func handle(intent: INStartCallIntent) async -> INStartCallIntentResponse
```

## Parameters

`intent`

The intent object that contains details about the user’s request. The information in this object has already been resolved by the user.

`completion`

The handler block to execute with your response. You must execute this handler while implementing this method. This handler has no return value and takes the following parameter:

- response: The [`INStartAudioCallIntentResponse`](/documentation/Intents/INStartAudioCallIntentResponse) object that contains the status of the request. This parameter must not be `nil`.

## Discussion

Use this method to transfer control of the call to your app. Perform any final checks and create a response object with the information needed to initiate the call in your app. Don’t try to initiate the call directly from this method. When your response object contains the [`INStartAudioCallIntentResponseCode.continueInApp`](/documentation/Intents/INStartAudioCallIntentResponseCode/continueInApp) code, Siri automatically launches your app and passes it the <doc://com.apple.documentation/documentation/Foundation/NSUserActivity> object from 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)