get
https://api.cloud.mbanq.com/v1/savingsaccounts//transactions?showEnrichedTransactions=true
Use this API to retrieve the completed transactions for a specific savings account. Pending transactions are excluded from the results.
Prerequisites
- Pass the
savingsAccountIdas a path parameter. - Pass
showEnrichedTransactionsas a required query parameter (trueto include enriched transaction details,falseto omit them).
Example Request
GET /v1/savingsaccounts/{savingsAccountId}/transactions?showEnrichedTransactions=true
What Are Completed Transactions?
Completed transactions are those that have been fully processed. Examples include:
- An incoming return credited to the account
- An outgoing ACH payment sent to the bank
- Interest postings, charges, and fee payments
Filtering Results
Use the following query parameters to narrow down the results:
| Parameter | Description |
|---|---|
offset | Starting position for pagination. Defaults to 0. |
limit | Maximum number of results to return. Defaults to 200. Pass 0 or a negative value to return all records. |
showEnrichedTransactions | Set to true to include enriched transaction details. Required. |
subTransactionType | Filter by transaction sub-type (e.g., 1 for CARD_TRANSACTION, 19 for ACH). |
statusType | Filter by transaction status. Supported values: PROCESSED, PROCESSING, REJECTED. |
transactionType | Filter by transaction type (e.g., 1 for DEPOSIT, 2 for WITHDRAWAL, 3 for INTEREST_POSTING). |
