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.
If source
and destination
are Sub Accounts for different Ramp Account, transaction
will generate withdrawal
operation to target account address
.
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