Client blockchain wallets

Returns the list of blockchain wallets of a client.

get

The blockchain wallets are sorted by creation date, in descending order. The most recently created blockchain wallets appear first.

Authorizations
Path parameters
clientIdstring · uuidRequired

The unique identifier of the client.

Responses
200
A JSON array of blockchain wallets.
application/json
get
GET /api/manager/v1/clients/{clientId}/blockchain-wallets HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
[
  {
    "id": "3c42718a-5b6c-4858-a6b1-2e231deff900",
    "label": "Main Ethereum Mainnet",
    "blockchainNetwork": "ethereum",
    "address": "0x9b7E335088762aD8061C04D08C37902ABC8ACb87",
    "createdAt": "2024-12-01T09:07:54.940Z",
    "approvedAt": "2024-12-01T12:00:12.125Z",
    "deletedAt": null
  }
]

Request the creation of a blockchain wallet.

post

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
Path parameters
clientIdstring · uuidRequired

The unique identifier of the client.

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
201
The blockchain wallet has been created.
application/json
post
POST /api/manager/v1/clients/{clientId}/blockchain-wallets HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 119

{
  "label": "Main Ethereum Mainnet",
  "blockchainNetwork": "ethereum",
  "address": "0x9b7E335088762aD8061C04D08C37902ABC8ACb87"
}
{
  "id": "3c42718a-5b6c-4858-a6b1-2e231deff900",
  "label": "Main Ethereum Mainnet",
  "blockchainNetwork": "ethereum",
  "address": "0x9b7E335088762aD8061C04D08C37902ABC8ACb87",
  "createdAt": "2024-12-01T09:07:54.940Z",
  "approvedAt": null,
  "deletedAt": null
}

Returns a blockchain wallet by ID.

get

Returns a blockchain wallet by its unique identifier.

Authorizations
Path parameters
clientIdstring · uuidRequired

The unique identifier of the client.

blockchainWalletIdstring · uuidRequired

The unique identifier of the blockchain wallet.

Responses
200
A blockchain wallet.
application/json
get
GET /api/manager/v1/clients/{clientId}/blockchain-wallets/{blockchainWalletId} HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
{
  "id": "3c42718a-5b6c-4858-a6b1-2e231deff900",
  "label": "Main Ethereum Mainnet",
  "blockchainNetwork": "ethereum",
  "address": "0x9b7E335088762aD8061C04D08C37902ABC8ACb87",
  "createdAt": "2024-12-01T09:07:54.940Z",
  "approvedAt": "2024-12-01T12:00:12.125Z",
  "deletedAt": null
}

Deletes a blockchain wallet by ID.

delete

Deletes a blockchain wallet by its unique identifier. A deleted blockchain wallet will still be returned in the list of blockchain wallets of the client 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
Path parameters
clientIdstring · uuidRequired

The unique identifier of the client.

blockchainWalletIdstring · uuidRequired

The unique identifier of the blockchain wallet.

Responses
200
The blockchain wallet has been deleted.
application/json
delete
DELETE /api/manager/v1/clients/{clientId}/blockchain-wallets/{blockchainWalletId} HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
{
  "id": "3c42718a-5b6c-4858-a6b1-2e231deff900",
  "label": "Main Ethereum Mainnet",
  "blockchainNetwork": "ethereum",
  "address": "0x9b7E335088762aD8061C04D08C37902ABC8ACb87",
  "createdAt": "2024-12-01T09:07:54.940Z",
  "approvedAt": "2024-12-01T12:00:12.125Z",
  "deletedAt": "2024-12-25T00:07:54.940Z"
}