Card Withdraw

Request Method: PATCH

Request Path: /v2/card/withdraw

Request Body: application/json

Request Body
{
    "data": "String" // Encryption Data String
}

Use Data Encryption to generate code.

data
{
    "cardId": "XR182237355123456789", // Card ID
    "amount": 100 // Withdraw amount
}

Response data

Response Example
{
    "code": 200,
    "message": "Success",
    "data": {
        "cardId": "XR182237355123456789",
        "cardCurrency": "USD",
        "amount": 389.06,
        "virtualAmt": 0,
        "rechargeMoney": -98,
        "rechargeFee": null
    }
}