Client deposit instructions
Returns the list of the fiat and blockchain deposit instructions of a client.
Authorizations
Path parameters
clientIdstring · uuidRequired
The unique identifier of the client.
Responses
200
A list of the fiat and blockchain deposit instructions of a client.
application/json
401
Invalid API key
500
An unexpected error occurred.
get
GET /api/manager/v1/clients/{clientId}/deposit-instructions HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
{
"fiat": [
{
"label": "Rialto",
"fiatCurrency": "eur",
"bankName": "Commerzbank",
"countryCode": "DE",
"identifiers": {
"iban": "DE89370400440532013000",
"bic": "COBADEFFXXX",
"intermediaryBic": "COBADEFFXXX"
},
"beneficiary": {
"name": "Rialto",
"address": "Kaiserstraße 69",
"city": "Frankfurt am Main",
"postalCode": "60329",
"countryCode": "DE"
},
"isSegregated": true
}
],
"blockchain": [
{
"label": "Rialto wallet",
"blockchainNetwork": "ethereum",
"walletAddress": "0x9b7E335088762aD8061C04D08C37902ABC8ACb87",
"isSegregated": false
}
]
}