POST
/
v1
/
custody
/
new_withdraw_request
/
request(
    "POST",
    "/v1/custody/new_withdraw_request/",
    {
        "coin": "ETH",
        "address": "0x8e2782aabdf80fbb69399ce3d9bd5ae69a60462c",
        "amount": 100000000000000,
        "request_id": "unique_123456",
        "remark": "hello test"
    },
    api_key, api_secret, host
)
{
  "success": true,
  "result": ""
}

Request

coin
String
required
The coin to withdraw.
request_id
String
required
A unique ID for the withdraw request.
address
String
required
The address to withdraw to.
amount
Int
required
The amount to withdraw.
memo
String
Needed when you withdraw EOS, XRP, IOST
remark
String
The remark to withdraw.
force_external
String
Non-empty means: force the transaction on-chain even if it’s a Loop Tx
force_internal
String
Non-empty means: force the transaction off-chain even if it’s not a Loop Tx, if it cannot be handled as a Loop tx, it will be rejected

Response

success
bool
true or false
result
String
Success is "", failed is null.