---
title: "resolveTransactionNote(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/inpaybillintenthandling/resolvetransactionnote(for:with:)"
---

# resolveTransactionNote(for:with:)

Resolves any custom notes associated with the transaction.

## Declaration

```swift
optional func resolveTransactionNote(for intent: INPayBillIntent, with completion: @escaping @Sendable (INStringResolutionResult) -> Void)
```

```swift
optional func resolveTransactionNote(for intent: INPayBillIntent) async -> INStringResolutionResult
```

## 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:

## Discussion

Discussion Implement this method to resolve whether you can record notes with the transaction. Return a successful resolution if you can record the note with the transaction. If your app doesn’t store notes with transactions, return a resolution indicating that the value isn’t required. You’re strongly encouraged to record notes with your app’s financial transactions. Notes are optional but are helpful for users to organize their transactions.

## See Also

### Resolving the Intent Parameters

- [resolveBillPayee(for:with:)](intents/inpaybillintenthandling/resolvebillpayee(for:with:).md)
- [resolveBillType(for:with:)](intents/inpaybillintenthandling/resolvebilltype(for:with:).md)
- [resolveFromAccount(for:with:)](intents/inpaybillintenthandling/resolvefromaccount(for:with:).md)
- [resolveTransactionAmount(for:with:)](intents/inpaybillintenthandling/resolvetransactionamount(for:with:).md)
- [resolveDueDate(for:with:)](intents/inpaybillintenthandling/resolveduedate(for:with:).md)
- [resolveTransactionScheduledDate(for:with:)](intents/inpaybillintenthandling/resolvetransactionscheduleddate(for:with:).md)
