The transactions are sorted by creation date, in descending order. The most recently created transactions appear first. The transactions can be filtered by date using the from
and to
parameters. If the from
and to
parameters are not provided, the transactions are fetched from the beginning until now. The transactions can be paginated using the limit
parameter. If there are more transactions to fetch with the provided parameters, the response will contain a hasNextPage
field set to true
. In order to fetch the next page, the to
parameter must be set to the createdAt
field of the last transaction of the current page.
The date from which the transactions are fetched. The comparison is made using the createdAt
field of the transactions. The comparison is inclusive, meaning that the transactions created at the provided date are included in the result. The value is in ISO 8601 format. If the value is not provided, the transactions are fetched from the beginning.
2024-12-01T09:07:54.940Z
The date to which the transactions are fetched. The comparison is made using the createdAt
field of the transactions. The comparison is exlusive, meaning that the transactions created at the provided date are not included in the result. The value is in ISO 8601 format. If the value is not provided, the transactions are fetched until now.
2024-12-03T10:07:54.940Z
The maximum number of transactions to fetch. The value must be a positive integer. If the value is not provided, the default value is 10. The maximum value is 100.
10
Creates a new transaction on the Rialto platform. The transaction can be either an on-ramp (fiat to blockchain asset) or off-ramp (blockchain asset to fiat) transaction. The transaction is created in status IDLE and is waiting for the initial funds transfer to be initiated.
A unique identifier for the request. It is used to ensure that the request is idempotent. The same request with the same idempotency key will return a 409 status.
The type of the transaction. Possible values are:
The amount of the transaction. The value is always positive.
The blockchain asset of the transaction. See the list of supported blockchain assets.
The identifier of the selected bank account for the transaction.
The identifier of the selected blockchain wallet for the transaction
The filenames of the documents related to the source of funds of the transaction. The documents must be uploaded before submitting the onboarding. Field is optional.
The filenames of the documents related to the business justification of the transaction. The documents must be uploaded before submitting the onboarding. Field is optional.
Comments added by the user at the creation of the transaction. Field is optional.