---
title: INSendPaymentIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/insendpaymentintenthandling
---

# INSendPaymentIntentHandling

The handler interface for transferring money from the current user’s account to a different user’s account.

## Declaration

```swift
protocol INSendPaymentIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INSendPaymentIntentHandling protocol to resolve, confirm, and handle requests to send money to another user of your app. Adopt this protocol in an object of your Intents extension that is capable of performing the financial transaction. Siri delivers an INSendPaymentIntent object to your handler when the user asks to send a payment using your app. The provided intent object contains the details of the payment, including the recipient, the amount to transfer, and any memos associated with the payment. Use the methods of this protocol to resolve the payment parameters and to validate that the payment is possible.

## Topics

### Resolving the Intent Parameters

- [resolvePayee(for:with:)](intents/insendpaymentintenthandling/resolvepayee(for:with:)-3otmy.md)
- [resolveCurrencyAmount(for:with:)](intents/insendpaymentintenthandling/resolvecurrencyamount(for:with:)-75c7o.md)
- [resolveNote(for:with:)](intents/insendpaymentintenthandling/resolvenote(for:with:).md)
- [resolvePayee(for:with:)](intents/insendpaymentintenthandling/resolvepayee(for:with:)-1kh1g.md)
- [resolveCurrencyAmount(for:with:)](intents/insendpaymentintenthandling/resolvecurrencyamount(for:with:)-9vd94.md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INPaymentsDomainHandling](intents/inpaymentsdomainhandling.md)

## See Also

### Send a Payment

- [INSendPaymentIntent](intents/insendpaymentintent.md)
- [INSendPaymentIntentResponse](intents/insendpaymentintentresponse.md)
