Authorization: Bearer ********************{
"participantCode": "B0100106",
"withdrawalType": 1,
"currency": "USD",
"amount": "1000.00",
"amountType": 1
}curl --location '/v2.0/payment/withdrawal/feeEstimate' \
--header 'Content-Type: application/json' \
--data '{
"participantCode": "B0100106",
"withdrawalType": 1,
"currency": "USD",
"amount": "1000.00",
"amountType": 1
}'{
"code": 200,
"msg": "success",
"data": {
"feeCurrency": "USD",
"originalFee": "15.00",
"feeRate": "0.015",
"minFee": "5.00",
"maxFee": "200.00",
"minimumWithdrawalAmount": "50.00",
"currentPointsBalance": "120.00",
"withPoints": {
"debitAmount": "1000.00",
"receivedAmount": "1000.00",
"actualFee": "0.00",
"pointsConsumed": "15.00"
},
"withoutPoints": {
"debitAmount": "1000.00",
"receivedAmount": "985.00",
"actualFee": "15.00",
"pointsConsumed": "0"
}
}
}