<!--
{
  "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/INRequestPaymentIntentHandling",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INRequestPaymentIntentHandling"
  },
  "title" : "INRequestPaymentIntentHandling"
}
-->

# INRequestPaymentIntentHandling

The handler interface for delivering a request for payment from another user of your app.

```
protocol INRequestPaymentIntentHandling : NSObjectProtocol
```

## Overview

Use the methods of the [`INRequestPaymentIntentHandling`](/documentation/Intents/INRequestPaymentIntentHandling) protocol to resolve, confirm, and handle the requesting of money from another user of your app. Adopt this protocol in an object of your Intents extension that is capable of contacting the designated user and communicating the request for payment.

Siri delivers an [`INRequestPaymentIntent`](/documentation/Intents/INRequestPaymentIntent) object to your handler when the user makes a request for payment using your app. The provided intent object contains the details of the payment request, including the recipient of the request, the amount of the payment, 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

[`resolvePayer(for:with:)`](/documentation/Intents/INRequestPaymentIntentHandling/resolvePayer(for:with:)-4xu87)

Resolves the person to receive the payment request.

[`resolveCurrencyAmount(for:with:)`](/documentation/Intents/INRequestPaymentIntentHandling/resolveCurrencyAmount(for:with:)-1it85)

Resolves the amount of money requested.

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

Resolves the notes associated with the request.

[`resolvePayer(for:with:)`](/documentation/Intents/INRequestPaymentIntentHandling/resolvePayer(for:with:)-qp42)

Called when you need to resolve the person who will receive the payment request.

[`resolveCurrencyAmount(for:with:)`](/documentation/Intents/INRequestPaymentIntentHandling/resolveCurrencyAmount(for:with:)-78c2m)

Called when you need to resolve the amount of money being requested.

### Confirming the Response

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

Confirms the payment request and confirm the details.

### Handling the Intent

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

Handles sending the payment request to the designated user.



---

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)