---
title: INTransferMoneyIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/intransfermoneyintenthandling
---

# INTransferMoneyIntentHandling

The handler interface for transferring money between accounts.

## Declaration

```swift
protocol INTransferMoneyIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INTransferMoneyIntentHandling protocol to resolve, confirm, and handle requests to transfer money between accounts. Adopt this protocol in an object of your Intents extension that’s capable of handling the transfer. Siri delivers an INTransferMoneyIntent object to your handler when the user asks to transfer money using your app. The provided intent object contains information about the amount to transfer and the accounts involved. Use the methods of this protocol to resolve the account information and initiate the transaction.

## Topics

### Resolving the Intent Parameters

- [resolveFromAccount(for:with:)](intents/intransfermoneyintenthandling/resolvefromaccount(for:with:).md)
- [resolveToAccount(for:with:)](intents/intransfermoneyintenthandling/resolvetoaccount(for:with:).md)
- [resolveTransactionAmount(for:with:)](intents/intransfermoneyintenthandling/resolvetransactionamount(for:with:).md)
- [resolveTransactionScheduledDate(for:with:)](intents/intransfermoneyintenthandling/resolvetransactionscheduleddate(for:with:).md)
- [resolveTransactionNote(for:with:)](intents/intransfermoneyintenthandling/resolvetransactionnote(for:with:).md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INPaymentsDomainHandling](intents/inpaymentsdomainhandling.md)

## See Also

### Money Transfers

- [INTransferMoneyIntent](intents/intransfermoneyintent.md)
- [INTransferMoneyIntentResponse](intents/intransfermoneyintentresponse.md)
