<!--
{
  "availability" : [
    "iOS: 10.0.0 -",
    "iPadOS: 10.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 3.2.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INSendPaymentIntentHandling",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INSendPaymentIntentHandling"
  },
  "title" : "INSendPaymentIntentHandling"
}
-->

# INSendPaymentIntentHandling

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

```
protocol INSendPaymentIntentHandling : NSObjectProtocol
```

## Overview

Use the methods of the [`INSendPaymentIntentHandling`](/documentation/Intents/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`](/documentation/Intents/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:)`](/documentation/Intents/INSendPaymentIntentHandling/resolvePayee(for:with:)-3otmy)

Resolves the recipient for a payment.

[`resolveCurrencyAmount(for:with:)`](/documentation/Intents/INSendPaymentIntentHandling/resolveCurrencyAmount(for:with:)-75c7o)

Resolves the amount of currency to transfer.

[`resolveNote(for:with:)`](/documentation/Intents/INSendPaymentIntentHandling/resolveNote(for:with:))

Resolves the notes associated with the transaction.

[`resolvePayee(for:with:)`](/documentation/Intents/INSendPaymentIntentHandling/resolvePayee(for:with:)-1kh1g)

Called when you need to resolve the recipient of the funds.

[`resolveCurrencyAmount(for:with:)`](/documentation/Intents/INSendPaymentIntentHandling/resolveCurrencyAmount(for:with:)-9vd94)

Called when you need to resolve the currency amount to be transferred.

### Confirming the Response

[`confirm(intent:completion:)`](/documentation/Intents/INSendPaymentIntentHandling/confirm(intent:completion:))

Confirms the transaction and details.

### Handling the Intent

[`handle(intent:completion:)`](/documentation/Intents/INSendPaymentIntentHandling/handle(intent:completion:))

Handles transferring the money between accounts.



---

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)