店铺持有人
查询店铺持有人列表
Endpoint
Sandbox
POST https://preapi.futurepay-develop.com/api/v1/account-holder/listProduction
POST https://api.futurepay.global/api/v1/account-holder/listRequest Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
storeType | M | string | 类型(企业:company,个人:individual) |
resultCode | O | string | 状态(ACCEPT:通过、REJECT:禁止、REVIEW:等待中) |
pageNum | O | string | 当前页 |
pageSize | O | string | 每页大小 |
Request Example
{
"pageNum":"1",
"pageSize":"1",
"resultCode":"ACCEPT",
"storeType":"individual"
}Response
| Field | Type | Description |
|---|---|---|
list | array | 店铺持有人列表 |
list.accountHolderId | string | 店铺持有人ID |
list.resultCode | string | 审核状态 |
list.errorMsg | string | 失败原因 |
list.storeType | string | 店铺类型 |
list.identityType | string | 身份证件类型 |
list.email | string | 邮箱 |
list.fullName | string | 姓名 |
list.identitySex | string | 性别 |
list.identityNationalityCode | string | 国籍 |
list.identityBirthday | string | 出生日期 |
list.identityNumber | string | 身份证件号码 |
list.residenceCountryCode | string | 居住国家 |
list.residenceAddress | string | 居住地址 |
list.residenceProvinceName | string | 省/州 |
list.residenceCityName | string | 城市 |
list.validityList | array | 支持开户信息 |
list.validityList.currency | string | 支持币种 |
list.validityList.num | integer | 可开通数量 |
list.zipCode | string | 邮编 |
list.createTime | string | 创建时间 |
list.updateTime | string | 更新时间 |
pageNum | integer | 当前页 |
pageSize | integer | 每页大小 |
total | integer | 总记录数 |
Response Example
{
"code": "0",
"msg": "succeeded",
"serverTime": 1765359708776,
"data": {
"list": [
{
"merchantReference": null,
"accountHolderId": "1985189713480429568",
"resultCode": "ACCEPT",
"errorMsg": "",
"storeType": null,
"identityType": null,
"email": null,
"fullName": "qiang wang",
"identitySex": null,
"identityNationalityCode": null,
"identityBirthday": null,
"identityNumber": null,
"residenceCountryCode": null,
"residenceAddress": null,
"residenceProvinceName": null,
"residenceCityName": null,
"validityList": [
{
"currency": "GBP",
"num": 10
},
{
"currency": "EUR",
"num": 10
},
{
"currency": "USD",
"num": 10
},
{
"currency": "AED",
"num": 10
}
],
"zipCode": null,
"createTime": null,
"updateTime": null
}
],
"pageNum": 1,
"pageSize": 5,
"total": 1
},
"success": true
}Updated 16 days ago
Did this page help you?