Initiated

Simulate the initiation of a transaction.

post

Simulate the initiation of a transaction for a client. This route is a helper for clients to autonomously test and integrate with the Rialto APIs. In production, transaction advancement is done by Rialto's back-office. The transaction must be in IDLE status. This route is only available on staging environment.

Authorizations
Path parameters
transactionIdstringrequired

The ID of the transaction to initiate

Body
transactionHashOrWireTransferReferencestringrequired

The transaction hash or wire transfer reference.

initiationAmountnumberrequired

The amount received in the transaction.

curl -L \
  --request POST \
  --url 'https://api.rialtobridge.xyz/api/client/v1/simulate/transactions/{transactionId}/initiated' \
  --header 'RIALTO_API_KEY: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "transactionHashOrWireTransferReference": "ABC123"
  }'