User withdrawal

Request Method: POST

Request Path: /user/withdraw

Query parameters:application/json

Field name Field description Example value Required
client_id client_id 1000001 yes

Request Body:application/json

Request data
{
    "user": "String", // User tag, used for identifying users in the TOKEN management system
    "coin_type": "Integer", // Chain type
    "amount": "String",  // Withdrawal amount
    "address": "String", // Withdrawal address
}

Chain type declaration

Sample request data
{
    "user": "[email protected]",
    "coin_type": 195,
    "amount": "300",
    "address": "TXr2noFm76YmM4MESAvqMaEr65rdLDQ7mY"
}

Response data

Response sample
{
    "code": 200,
    "message": "Success",
    "data": null
}