支付宝openId查询
提交查询接口,请求方式:POST;请求的Content-Type,必须设置为:application/x-www-form-urlencoded
请求地址
请求地址:/api/other/getAlipayAccount
|
请求参数
参数名称
|
字段类型
|
是否必填
|
示例值
|
描述
|
---|---|---|---|---|
customerId | String | 是 | 10001 |
客户ID(平台分配)
|
mobile | String | 是 | 18888888888 |
支付宝绑定的手机号
|
goodsId | String | 是 | 10082 |
商品ID
|
sign | string | 是 | 375d05b41775e1ddf2098504444af1e2 |
签名
|
请求示例
"customerId": "10001",
"mobile": "18888888888",
"goodsId": "1001273",
"sign": "375d05b41775e1ddf2098504444af1e2",
响应参数
参数名称
|
字段类型
|
示例值
|
描述
|
---|---|---|---|
open_id | string | 0866zjZcJwEHfDON_x2LBSIkQJGAq5hUMl2aHwSx-yR3708 |
支付宝openId
|
account_no | string | hap***@126.com |
支付宝账号
|
响应示例
{
"code": 200,
"message": "操作成功",
"data": {
"account_no_info_list": [
{
"open_id":"0866zjZcJwEHfDON_x2LBSIkQJGAq5hUMl2aHwSx-yR3708",
"account_no":"hap***@126.com"
},
{
"open_id":"0866zjZcJwEHfDON_x2LBSIkQJGAq5hUMl2aHwSx-yR3701",
"account_no":"Test***@qq.com"
}
]
}
}
如果未查询到信息或者查询失败,data为null
{
"code": 200,
"message": "操作成功",
"data": null,
}
{
"code": 500,
"message": "操作失败",
"data": null,
}