mercury_get_transaction
Retrieve full details of a specific Mercury deposit account transaction using its ID. Avoids relisting all transactions for a faster lookup.
Instructions
Retrieve a specific transaction by ID for a Mercury deposit account.
USE WHEN: fetching the full detail of one transaction whose ID is already known (typically from mercury_list_transactions). Faster than relisting + filtering.
DO NOT USE: to enumerate transactions (use mercury_list_transactions). For IO Credit transactions, use mercury_list_credit_transactions and filter by id client-side.
RETURNS: { id, amount, status, postedAt, counterpartyName, memo, ... }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | Yes | The Mercury account ID | |
| transactionId | Yes | The transaction ID |