Table of Contents
8.33 提现账户列表【待联调验证】
GET /tieup/api/v1/artist/withdrawal-accounts
响应字段:
| 字段 | 类型 | 说明 |
|---|---|---|
items[] |
array | 当前偶像启用中的提现账户列表;接口实际返回数组本身 |
id |
integer | 提现账户 ID,申请提现时传入 withdraw_account_id |
artist_id |
integer | 偶像 ID |
user_id |
integer | 偶像绑定 APP 用户 ID |
account_type |
integer | 账户类型:1=支付宝,2=微信,3=银行卡 |
account_type_label |
string | 账户类型中文 |
account_name |
string | 收款账户实名姓名 |
account_no |
string | 完整收款账号,供 APP 展示和编辑账户时回填 |
account_no_masked |
string | 脱敏后的收款账号,兼容旧前端展示 |
bank_name |
string/null | 开户银行,银行卡账户使用 |
bank_branch |
string/null | 开户支行,银行卡账户使用 |
is_default |
integer | 是否默认账户:1=是,2=否 |
status |
integer | 状态:1=启用,2=禁用 |
响应示例:
{
"code": 200,
"message": "成功",
"data": [
{
"id": 1,
"artist_id": 20001,
"user_id": 20002,
"account_type": 1,
"account_type_label": "支付宝",
"account_name": "李四",
"account_no_masked": "al**************.com",
"account_no": "alipay_account@example.com",
"bank_name": null,
"bank_branch": null,
"is_default": 1,
"status": 1
}
]
}