Endpoint to retrieve your accounts whitelisted withdraw instructions for assets and funds.
GET /api/v1/accounting/account/{accountId}/request/withdraw-instructions
GET /api/v1/accounting/account/myAccountID/request/withdraw-instructions
// Successful Response body{
"accountId" : "MyAccountId",
"instructions" : [
{
"asset" : "BTC",
"assetType" : "blockchain",
"networkType" : "bitcoin",
"address" : "my_bitcoin_address"
},
{
"asset" : "ETH",
"assetType" : "blockchain",
"networkType" : "erc20",
"address" : "my_ethereum_address"
},
{
"asset" : "USDC",
"assetType" : "blockchain",
"networkType" : "erc20",
"address" : "my_ethereum_address"
},
{
"asset" : "USDC",
"assetType" : "blockchain",
"networkType" : "trc20",
"address" : "my_tron_address"
}
],
"status" : "ok",
"httpStatusCode" : 200
}
// Error Response body
{
"status": 404,
"error": "The withdraw instructions with the provided ID were not found"
}