POST api/ClientApp/manage/bound_account_list

[已完成Demo] 已绑定的账户 (创建成功的)

Request Information

URI Parameters

None.

Body Parameters

BaseRequest
NameDescriptionTypeAdditional information
clientType

客户端类型,默认值:website

string

None.

clientVersion

客户端版本,默认值:1.0.0

string

None.

Request Formats

application/json, text/json

Sample:
{
  "clientType": "sample string 1",
  "clientVersion": "sample string 2"
}

Response Information

Resource Description

BoundAccountListResponse
NameDescriptionTypeAdditional information
boundAccounts

我的账户列表

Collection of BoundAccount

None.

code

1 为成功,其他为失败

integer

None.

msg

请求描述

string

None.

Response Formats

application/json, text/json

Sample:
{
  "boundAccounts": [
    {
      "account_id": 1,
      "user_id": 2,
      "bank_id": 3,
      "bank_name": "sample string 4",
      "bank_type": 5,
      "bank_type_description": "Other",
      "icon": "sample string 6",
      "mobile": "sample string 7",
      "status": 8,
      "create_time": "sample string 9",
      "UPI_count": 10
    },
    {
      "account_id": 1,
      "user_id": 2,
      "bank_id": 3,
      "bank_name": "sample string 4",
      "bank_type": 5,
      "bank_type_description": "Other",
      "icon": "sample string 6",
      "mobile": "sample string 7",
      "status": 8,
      "create_time": "sample string 9",
      "UPI_count": 10
    }
  ],
  "code": 1,
  "msg": "sample string 2"
}