Transactions
Transaction is instant movement of liability.
Balance moved in transaction from account to account is not affecting assets, only liabilities in balance.available
and balance.total
.
Create
Use seal
object to store immutable data about the transaction.
Use data
object to store variable data about the transaction.
In response we get new transaction
. This call is async.
transaction
will change status
to DONE
or FAILED
once processing is finished.
Retrieve history
To filter out history of incoming or outgoing transactions for authenticated user, apply ?scope=outgoing
or ?scope=incoming
in RESTful API query. Those scopes will filter out transactions where authenticated user is owner of source.account
or destination.account
.
In response we get list of transactions
.
Last updated
Was this helpful?