---
title: "confirm(intent:completion:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/instartvideocallintenthandling/confirm(intent:completion:)"
---

# confirm(intent:completion:)

Validates whether your app is able to initiate the video call.

## Declaration

```swift
optional func confirm(intent: INStartVideoCallIntent, completion: @escaping @Sendable (INStartVideoCallIntentResponse) -> Void)
```

```swift
optional func confirm(intent: INStartVideoCallIntent) async -> INStartVideoCallIntentResponse
```

## Parameters

- `intent`: The intent object containing details about the user’s request. The user has already resolved the information in this object.
- `completion`: The handler block to execute with your response. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:

## Discussion

Discussion Use this method to validate that your app is able to initiate the call to the specified users. You might check the availability of your calling network, verify that the current user is logged in and able to place the call, verify that the intended recipients are able to receive the call, or perform other tasks specific to your app.
