Blockchain wallets

Returns the list of blockchain wallets.

get
/blockchain-wallets

The blockchain wallets are sorted by creation date, with the most recent blockchain wallet appearing first.

Authorizations
RIALTO_API_KEYstringRequired
Responses
200

A JSON array of blockchain wallets.

application/json
get
/blockchain-wallets

Request the creation of a blockchain wallet.

post
/blockchain-wallets

Creates a blockchain wallet with the specified parameters. The blockchain wallet is created in a pending state and must be approved by an administrator before it can be used in transactions. This route is only available for verified clients. Unverified clients will receive a 400 error.

Authorizations
RIALTO_API_KEYstringRequired
Body
labelstring | nullOptional

The label of the blockchain wallet.

blockchainNetworkstringRequired

The blockchain network of the wallet. See the list of supported blockchains.

addressstringRequired

The address of the blockchain wallet.

Responses
post
/blockchain-wallets

Returns a blockchain wallet by ID.

get
/blockchain-wallets/{blockchainWalletId}

Returns a blockchain wallet by its unique identifier.

Authorizations
RIALTO_API_KEYstringRequired
Path parameters
blockchainWalletIdstring · uuidRequired

The unique identifier of the blockchain wallet.

Responses
200

A blockchain wallet.

application/json
get
/blockchain-wallets/{blockchainWalletId}

Deletes a blockchain wallet by ID.

delete
/blockchain-wallets/{blockchainWalletId}

Deletes a blockchain wallet by its unique identifier. A deleted blockchain wallet will still be returned in the list of blockchain wallets of the user or queriable by ID, but it will have a non null deletedAt field. A deleted blockchain wallet can not be used in transactions. This route is only available for verified clients. Unverified clients will receive a 400 error.

Authorizations
RIALTO_API_KEYstringRequired
Path parameters
blockchainWalletIdstring · uuidRequired

The unique identifier of the blockchain wallet.

Responses
200

The blockchain wallet has been deleted.

application/json
delete
/blockchain-wallets/{blockchainWalletId}

Last updated