<!--
{
  "availability" : [
    "iOS: 11.0.0 - 15.0.0",
    "iPadOS: 11.0.0 - 15.0.0",
    "macCatalyst: 13.1.0 - 15.0.0",
    "visionOS: 1.0.0 - 1.0.0",
    "watchOS: 4.0.0 - 8.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INTransferMoneyIntentHandling/resolveTransactionAmount(for:with:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INTransferMoneyIntentHandling(im)resolveTransactionAmountForTransferMoney:withCompletion:"
  },
  "title" : "resolveTransactionAmount(for:with:)"
}
-->

# resolveTransactionAmount(for:with:)

Resolves the amount that the user wants to transfer.

```
optional func resolveTransactionAmount(for intent: INTransferMoneyIntent, with completion: @escaping @Sendable (INPaymentAmountResolutionResult) -> Void)
```

```
optional func resolveTransactionAmount(for intent: INTransferMoneyIntent) async -> INPaymentAmountResolutionResult
```

## Parameters

`intent`

The intent object containing details of the user’s request. Use this object to get the initial information, if any, provided by the user.

`completion`

The handler block to execute with the resolution. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:

- resolutionResult: The resolution object containing your proposed resolution. For successful resolutions, create a resolution object whose value is the [`INPaymentAmount`](/documentation/Intents/INPaymentAmount) object containing the amount to transfer. This parameter must not be `nil`.

## Discussion

Implement this method to resolve the amount of money the user wants to transfer. The [`transactionAmount`](/documentation/Intents/INTransferMoneyIntent/transactionAmount) property of the intent contains information about how much the user wants to transfer. Return a successful resolution if you’re able to transfer the specified amount. If the amount exceeds the maximum or minimum amount allowed by your app, return an adjusted amount and ask for confirmation.

---

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)