LogoLogo
  • Getting started
    • Overview
    • Quick start
    • Integration
  • Products
    • Fiat <> Crypto conversions
    • Third Party Payments
    • Segregated Accounts
  • Concepts
    • Authentication
    • Idempotency
    • Onboarding
    • Fees and Limits
    • Accounts
      • Client Accounts
      • Manager Accounts
    • Bank Accounts and Wallet Addresses
    • Supported Fiat Currencies, Blockchain Assets and Blockchain Networks
    • Webhooks
    • Document Management
  • Client API reference
    • Transactions
    • Preset fees
    • Deposit instructions
    • Bank accounts
    • Blockchain wallets
    • User
    • Uploads (temporary storage)
    • Documents (permanent storage)
    • Constants
    • Simulate
    • Models
  • Client Specification
  • Manager API reference
    • Clients
    • Clients onboarding
    • Client bank accounts
    • Client blockchain wallets
    • Client preset fees
    • Client deposit instructions
    • Client transactions
    • Transactions
    • Manager preset fees
    • Deposit instructions
    • Uploads (temporary storage)
    • Documents (permanent storage)
    • Webhooks
    • Constants
    • Simulate
    • Models
  • Manager Specification
Powered by GitBook
On this page
  1. Manager API reference

Client deposit instructions

PreviousClient preset feesNextClient transactions

Returns the list of the fiat and blockchain deposit instructions of a client.

get

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
    }
  ]
}