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

# INRequestPaymentIntent

An intent for requesting money from another user’s account.

```
class INRequestPaymentIntent
```

## Overview

Siri creates an [`INRequestPaymentIntent`](/documentation/Intents/INRequestPaymentIntent) object when the current user requests a payment from another user. A request payment intent object includes the payment amount and the person receiving the request. This intent represents only a request for payment and shouldn’t initiate any payments.

To handle this intent, the handler object in your Intents extension must adopt the [`INRequestPaymentIntentHandling`](/documentation/Intents/INRequestPaymentIntentHandling) protocol. Your handler should confirm the request and create an [`INRequestPaymentIntentResponse`](/documentation/Intents/INRequestPaymentIntentResponse) object with the results of making the request.

### Additional Intent Attributes

The following table lists additional attributes of this intent object:

|Attribute                      |Description                                  |
|-------------------------------|---------------------------------------------|
|Supported by                   |Siri Intents, Siri Suggestions, Shortcuts app|
|Always requires unlocked device|Yes                                          |

When performing a search, Siri automatically asks the user to unlock a currently locked device. You don’t need to explicitly ask to unlock the device. In addition, Siri always prompts the user to confirm the request before asking your Intents extension to handle it.

## Topics

### Initializing the Intent Object

[`init(payer:currencyAmount:note:)`](/documentation/Intents/INRequestPaymentIntent/init(payer:currencyAmount:note:))

Initializes the request payment intent object with the specified recipient and payment information.

### Getting Details About the Payment

[`payer`](/documentation/Intents/INRequestPaymentIntent/payer)

The recipient of the payment request.

[`currencyAmount`](/documentation/Intents/INRequestPaymentIntent/currencyAmount)

The amount of the payment.

[`note`](/documentation/Intents/INRequestPaymentIntent/note)

A note associated with the request.



---

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)