---
title: INSendPaymentIntent
framework: intents
role: symbol
role_heading: Class
path: intents/insendpaymentintent
---

# INSendPaymentIntent

A request to transfer money from the current user’s account to a different user’s account.

## Declaration

```swift
class INSendPaymentIntent
```

## Overview

Overview Siri creates an INSendPaymentIntent object when the current user asks to transfer money to another user. A send payment intent object includes the payment amount and the recipient of the payment. Use that information to validate the transaction and transfer the funds. To handle this intent, the handler object in your Intents extension must adopt the INSendPaymentIntentHandling protocol. Your handler should confirm the request and create an INSendPaymentIntentResponse object with the result of sending the money to the specified user. This intent object represents a financial transaction between two users. Additional Intent Attributes The following table lists additional attributes of this intent object:  |   |   |  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 payment before asking your Intents extension to handle the transaction.

## Topics

### Initializing the Intent Object

- [init(payee:currencyAmount:note:)](intents/insendpaymentintent/init(payee:currencyamount:note:).md)

### Getting Details About the Payment

- [payee](intents/insendpaymentintent/payee.md)
- [currencyAmount](intents/insendpaymentintent/currencyamount.md)
- [note](intents/insendpaymentintent/note.md)

## Relationships

### Inherits From

- [INIntent](intents/inintent.md)

### Conforms To

- [CVarArg](swift/cvararg.md)
- [CustomDebugStringConvertible](swift/customdebugstringconvertible.md)
- [CustomStringConvertible](swift/customstringconvertible.md)
- [Equatable](swift/equatable.md)
- [Hashable](swift/hashable.md)
- [INIntentSetImageKeyPath](intents/inintentsetimagekeypath.md)
- [NSCoding](foundation/nscoding.md)
- [NSCopying](foundation/nscopying.md)
- [NSObjectProtocol](objectivec/nsobjectprotocol.md)
- [NSSecureCoding](foundation/nssecurecoding.md)

## See Also

### Send a Payment

- [INSendPaymentIntentHandling](intents/insendpaymentintenthandling.md)
- [INSendPaymentIntentResponse](intents/insendpaymentintentresponse.md)
