get
https://v1/v1/savingsaccounts//pendingTransaction
Use this API to retrieve all pending transactions for a specific savings account. Unlike completed transactions, pending transactions are still being processed and have not yet been settled.
Prerequisites
- Pass the
savingsIdas a path parameter.
Example Request
GET /v1/savingsaccounts/{savingsId}/pendingtransactions
What Are Pending Transactions?
Pending transactions are those that have been initiated but not yet fully processed or settled. Common examples include:
- Card authorizations awaiting settlement
- ACH transactions in transit
- Transactions held under AML (Anti-Money Laundering) screening
Filtering & Pagination
Use the following query parameters to control and sort 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. |
orderBy | Field to sort results by. Defaults to createdAt. |
sortOrder | Sort direction. Supported values: ASC, DESC. Defaults to DESC. |

