Transactions
How to get transactions?
Invoke fetchAccountTransactions from redux/transactions using LinkerStudio/core/hooks useAppDispatch
Get specific transactions
All transactions request parameters are optional to use.
Parameter | Type | Description |
---|---|---|
limit | number | Default: 100 |
type | string[] | Filter by types |
status | string[] | Filter by statuses |
search_description | string | Filter by description of a transaction. '*' can be used as a wild card at the start or the end of a description. |
synthetic_account_id | string | Filter by synthetic account, either in source or destination |
source_synthetic_account_id | string | Filter by synthetic account, but only in source |
destination_synthectic_account_id | string | Filter by synthetic account, but only in destination |
debit_card_uid | string | Filter by debit card uid |
offset | string | Default: 0 |
sort | string | Filter by sort Default: "created_at_asc" |
Transactions Request Example
Last updated