文档
测试

- 绑定支付宝账号

POST
/wallet/api/info/alipay

请求头

参数名
类型
描述
必填
Authorization
string
Bearer xxx
必填

请求参数

参数名
类型
描述
必填
account
string
支付宝账号
必填
realName
string
真实姓名
必填

响应参数

参数名
类型
描述
必填
code
number
示例:0
必填
msg
string
示例:操作成功
必填
data
boolean
示例:true
必填

说明 / 示例

```http POST /wallet/api/info/alipay HTTP/1.1 Host: localhost:9999 Content-Type: application/json Authorization: Bearer c8aab733-7974-459b-9e5a-667b579f437e { "account": "啊啊啊", "realName": "哈哈" } ``` ```json { "code": 0, "msg": "操作成功", "data": true } ```