List all Transactions
GET / v1 / treasury / transactions
Retrieves a list of Transaction objects.
Parameters
- financial _ account string Returns objects associated with this FinancialAccount.
- created object Only return Transactions that were created during the given date interval.
- order _ by enum The results are in reverse chronological order by
createdorposted_at. The default iscreated. Possible enum valuescreatedTimestamp describing when the Transaction was created.posted_atTimestamp describing when the Transaction was posted. - status enum Only return Transactions that have the given status:
open,posted, orvoid. Possible enum valuesopenThe initial state for all Transactions. The Transaction results in updates to the sub-balance amounts, but the current balance is not affected until the Transaction posts.postedFunds have successfully entered or left the account. The current balance was affected.voidThe Transaction never impacted the balance. For example, a Transaction would enter this state if an OutboundPayment was initiated but then canceled before the funds left the account. - status _ transitions object A filter for the
status_transitions.posted_attimestamp. When using this filter,status=postedandorder_by=posted_atmust also be specified.
More parameters
- ending _ before string
- limit integer
- starting _ after string
Returns
A dictionary with a data property that contains an array of up to limit Transactions, starting after Transaction starting_after. Each entry in the array is a separate Transaction object. If no more Transactions are available, the resulting array will be empty.
Response
