Endpoint to retrieve deposit instructions for assets and funds. Used to obtain the instructions to deposit funds and digital assets.
GET /api/v1/accounting/account/{accountId}/request/deposit-instructions
GET /api/v1/accounting/account/myAccountID/request/deposit-instructions
// Successful Response body
{
"accountId" : "MyAccountId",
"instructions" : [
{
"asset" : "BTC",
"assetType" : "blockchain",
"networkType" : "bitcoin",
"address" : "my_bitcoin_address"
},
{
"asset" : "USDC",
"assetType" : "blockchain",
"networkType" : "trc20",
"address" : "my_tron_address"
}, {
"asset" : "USD",
"assetType" : "fiat",
"method" : "FedWire",
"bankName" : "My Bank",
"bankAddress" : "My Banks Address",
"bankRoutingNumber" : "000000000",
"bankSwiftNumber" : "CUESUS33",
"beneficiaryName" : "1Konto Inc.",
"beneficiaryAddress" : "1Konto Corp Address",
"beneficiaryAccountNumber" : "the 1konto account number",
"specialInstructions" : "IBAN: My IBAN Account Number; Reference: MyAccountId"
}
],
"status" : "ok",
"httpStatusCode" : 200
}
}
// Error Response body
{
"status": 404,
"error": "The deposit instructions with the provided ID were not found"
}