-
Notifications
You must be signed in to change notification settings - Fork 0
Home
yizihan edited this page Jun 20, 2019
·
2 revisions
tbex_exchange_coin
/account/wallet/fee/change
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
userId | Long | false | 用户ID(默认0) |
productId | int | true | |
currencyId | int | true | |
takerFee | BigDecimal | true | |
makerFee | BigDecimal | true |
{ "code":0, "message":"操作成功" }
/account/wallet/fee/list
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
id | Long | false | |
userId | Long | false | |
productId | int | false | |
currencyId | int | false | |
takerFeeMin | BigDecimal | false | |
takerFeeMax | BigDecimal | false | |
makerFeeMin | BigDecimal | false | |
makerFeeMax | BigDecimal | false | |
page | int | false | 默认1 |
pageSize | int | false | 默认20 |
{
"success": true,
"code": 0,
"data": [
{
"id": 1,
"userId": 1,
"productId": 0,
"currencyId": 1,
"takerFee": 0.0001,
"makerFee": 0.0001,
"createdDate": 1522392515000,
"modifyDate": 1522392515000
}
]
}