POST api/ClientApp/trans/deposit_network
[已完成] 充值/存款/订金 网络
Request Information
URI Parameters
None.
Body Parameters
DepositNetworkRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| currency |
货币(暂时固定USDT) |
string |
Required |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"currency": "sample string 1",
"clientType": "sample string 2",
"clientVersion": "sample string 3"
}
Response Information
Resource Description
DepositNetworkResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| networks | Collection of DepositNetwork |
None. |
|
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"networks": [
{
"id": 1,
"currency": "sample string 2",
"network": "sample string 3",
"arrival_time": 4,
"deposit_rate": 5.0,
"withdrawal_rate": 6.0
},
{
"id": 1,
"currency": "sample string 2",
"network": "sample string 3",
"arrival_time": 4,
"deposit_rate": 5.0,
"withdrawal_rate": 6.0
}
],
"code": 1,
"msg": "sample string 2"
}