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 flag,Used to distinguish the user of the access party
    "coin_type": "Integer", // Chain type
    "amount": "String",  // Withdrawal amount
    "address": "String", // Withdrawal address
    "token": "String", // Token Contract address
}

Chain type declaration

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

Response data

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