POST api/v1/vcdepositwithdrawalcoinv1/OddCoinWithdrawal

Request Information

URI Parameters

None.

Body Parameters

SolanaOddWithdrawalParamDto
NameDescriptionTypeAdditional information
UserWalletAddress

string

None.

UserOddAccount

string

None.

Amount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "UserWalletAddress": "sample string 1",
  "UserOddAccount": "sample string 2",
  "Amount": 3.0
}

application/xml, text/xml

Sample:
<SolanaOddWithdrawalParamDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Trades.VC_Coin.Solana">
  <Amount>3</Amount>
  <UserOddAccount>sample string 2</UserOddAccount>
  <UserWalletAddress>sample string 1</UserWalletAddress>
</SolanaOddWithdrawalParamDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SolanaWithdrawalResultDto
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

Response Formats

application/json

Sample:

Sample not available.

application/xml

Sample:
<SolanaWithdrawalResultDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
</SolanaWithdrawalResultDto>

text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2"
}

text/xml

Sample:
<SolanaWithdrawalResultDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Trades.VC_Coin.Solana">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
</SolanaWithdrawalResultDto>