POST api/v1/payv1/GetWithdrawalFee

Request Information

URI Parameters

None.

Body Parameters

WithDrawalFeeParam
NameDescriptionTypeAdditional information
money

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "money": 1.0
}

application/xml, text/xml

Sample:
<WithDrawalFeeParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DDO.AppApi.Models.v1.Params">
  <money>1</money>
</WithDrawalFeeParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

WithdrawlFeeDto
NameDescriptionTypeAdditional information
money

decimal number

None.

fee

decimal number

None.

Ratiofee

decimal number

None.

AmountReceived

decimal number

None.

WithdrawlRemark

string

None.

Balance

decimal number

None.

CurrencyUseRate

decimal number

None.

Response Formats

application/json

Sample:

Sample not available.

application/xml

Sample:
<WithdrawlFeeDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <money>1</money>
  <fee>2</fee>
  <Ratiofee>3</Ratiofee>
  <AmountReceived>4</AmountReceived>
  <WithdrawlRemark>sample string 5</WithdrawlRemark>
  <Balance>6</Balance>
  <CurrencyUseRate>7</CurrencyUseRate>
</WithdrawlFeeDto>

text/json

Sample:
{
  "money": 1.0,
  "fee": 2.0,
  "Ratiofee": 3.0,
  "AmountReceived": 4.0,
  "WithdrawlRemark": "sample string 5",
  "Balance": 6.0,
  "CurrencyUseRate": 7.0
}

text/xml

Sample:
<WithdrawlFeeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Trades.SMH">
  <AmountReceived>4</AmountReceived>
  <Balance>6</Balance>
  <CurrencyUseRate>7</CurrencyUseRate>
  <Ratiofee>3</Ratiofee>
  <WithdrawlRemark>sample string 5</WithdrawlRemark>
  <fee>2</fee>
  <money>1</money>
</WithdrawlFeeDto>