POST api/ClientApp/manage/available_account_type
[已完成Demo] 获取可使用的账户类型:UPI 钱包/个人账户/企业账户 等
Request Information
URI Parameters
None.
Body Parameters
AvailableAccountTypeListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| type |
类型 可选择 [UPI, Personal, Corporate] |
string |
Required |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"type": "sample string 1",
"clientType": "sample string 2",
"clientVersion": "sample string 3"
}
Response Information
Resource Description
AvailableAccountTypeListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| availableAccounts |
可用账户类型列表 |
Collection of AvailableAccount |
None. |
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"availableAccounts": [
{
"account_type_id": 1,
"type": "sample string 2",
"name": "sample string 3",
"icon": "sample string 4",
"daily_limit": 5,
"daily_batch": 6,
"single_min": 7,
"single_max": 8
},
{
"account_type_id": 1,
"type": "sample string 2",
"name": "sample string 3",
"icon": "sample string 4",
"daily_limit": 5,
"daily_batch": 6,
"single_min": 7,
"single_max": 8
}
],
"code": 1,
"msg": "sample string 2"
}