POST api/ClientApp/trans/withdraw_submit

[已完成] 取款 / 提现

Request Information

URI Parameters

None.

Body Parameters

WithdrawSubmitRequest
NameDescriptionTypeAdditional information
user_wallet_id

用户钱包ID

integer

Required

amount

提现金额

decimal number

Required

Range: inclusive between 1 and 1.79769313486232E+308

otp

OTP(手机验证码)

string

Required

clientType

客户端类型,默认值:website

string

None.

clientVersion

客户端版本,默认值:1.0.0

string

None.

Request Formats

application/json, text/json

Sample:
{
  "user_wallet_id": 1,
  "amount": 2.0,
  "otp": "sample string 3",
  "clientType": "sample string 4",
  "clientVersion": "sample string 5"
}

Response Information

Resource Description

WithdrawSubmitResponse
NameDescriptionTypeAdditional information
code

1 为成功,其他为失败

integer

None.

msg

请求描述

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2"
}