Wallet Addresses
These endpoints manage the subaccount's external wallet addresses for withdrawals.
Register Subaccount's Wallet Address
POST https://live.betaapp.com/v1/subaccount/wallet-address/external
Endpoint to register subaccount external wallets for Crypto withdrawal.
Headers
Authorization*
String
Bearer {access_token}
x-sub-account-id*
String
subaccount ID
accept*
String
application/json
Request Body
asset*
String
Check coverage page for more details of the supported assets
name*
String
Nickname for the wallet
address*
String
Wallet Address
network*
String
Check coverage page for more details of the supported networks
{
"name": "string",
"address": "string",
"asset": "string",
"Network": "string",
"id": "string",
"type": "string"
"message": "string",
"updated_at": "string"
"created_at": "string",
"deleted_at": "string",
}{
"message": "string"
}Request Example:
Response Example:
Delete Subaccount's Wallet Address
DELETE https://live.betaapp.com/v1/subaccount/wallet-address/id/{id}
This endpoint deletes the external wallet address associated with a specific subaccount.
Headers
Authorization*
String
Bearer {access_token}
x-sub-account-id*
String
Subaccount ID
accept*
String
application/json
Request Body
id*
String
Wallet address ID that should be deleted
Request Example:
Response Example:
Last updated