Page cover

Request Withdraw - Blockchain

requires auth

Request Withdraw for Digital Asset (Blockchain)

Endpoint to request a withdraw from your 1KPrime account to your external whitelisted wallets.

POST /api/v1/accounting/account/{accountId}/request/withdraw/blockchain

Path Parameters:

Path
Type
Description

accountId*

string

your account ID

Body Parameters:

Body
Type
Description

amount *

object

Asset amount you want to withdraw

network

string

The Blockchain network of your wallet. See Network Types

address

string

Your wallet address

instructions

array of string

Any additional instructions

Example

POST /api/v1/accounting/account/myAccountID/request/withdraw/blockchain
// Request body
{
    "amount": "1 BTC",
    "network": "bitcoin",
    "address": "myWalletAddress",
    "instructions": [
        "any aditional instructions"
    ]
}

Last updated