Get Deposit Instructions
requires auth
Get Deposit Instructions
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-instructionsPath Parameters:
Path
Type
Description
accountId*
string
your account ID
Example
GET /api/v1/accounting/account/myAccountID/request/deposit-instructions{
"accountId" : "MyAccountId",
"instructions" : [
{
"asset" : "BTC",
"assetType" : "blockchain",
"networkType" : "bitcoin",
"address" : "my_bitcoin_address"
},
{
"asset" : "USDC",
"assetType" : "blockchain",
"networkType" : "tron",
"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
}
}Last updated
