POST api/v1/vcdepositwithdrawalcoinv1/GeWithdrawFee
Request Information
URI Parameters
None.
Body Parameters
SheepWithdrawFeeParam| Name | Description | Type | Additional information |
|---|---|---|---|
| ChainName | string |
None. |
|
| CoinType | string |
None. |
|
| CoinName | string |
None. |
|
| CoinAmount | decimal number |
None. |
|
| UserGameRecordId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ChainName": "sample string 1",
"CoinType": "sample string 2",
"CoinName": "sample string 3",
"CoinAmount": 4.0,
"UserGameRecordId": 5
}
application/xml, text/xml
Sample:
<SheepWithdrawFeeParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DDO.AppApi.Model.v1.Params.VC_Coin"> <ChainName>sample string 1</ChainName> <CoinAmount>4</CoinAmount> <CoinName>sample string 3</CoinName> <CoinType>sample string 2</CoinType> <UserGameRecordId>5</UserGameRecordId> </SheepWithdrawFeeParam>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetWithdrawFeeResultDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | decimal number |
None. |
|
| ActualAmount | decimal number |
None. |
|
| FeeRate | decimal number |
None. |
|
| Fee | decimal number |
None. |
|
| Balance | decimal number |
None. |
|
| CoinWithdrawTips | string |
None. |
Response Formats
application/json
Sample:
Sample not available.
application/xml
Sample:
<GetWithdrawFeeResultDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Amount>1</Amount> <ActualAmount>2</ActualAmount> <FeeRate>3</FeeRate> <Fee>4</Fee> <Balance>5</Balance> <CoinWithdrawTips>sample string 6</CoinWithdrawTips> </GetWithdrawFeeResultDto>
text/json
Sample:
{
"Amount": 1.0,
"ActualAmount": 2.0,
"FeeRate": 3.0,
"Fee": 4.0,
"Balance": 5.0,
"CoinWithdrawTips": "sample string 6"
}
text/xml
Sample:
<GetWithdrawFeeResultDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Trades.VC_Coin"> <ActualAmount>2</ActualAmount> <Amount>1</Amount> <Balance>5</Balance> <CoinWithdrawTips>sample string 6</CoinWithdrawTips> <Fee>4</Fee> <FeeRate>3</FeeRate> </GetWithdrawFeeResultDto>