1. Holder
OPEN-API
  • API Call Description
  • Constant Declaration
    • Wallet
      • Wallet Status
      • In Out Type
      • Transaction Type
      • Transaction Status
    • Bin
      • Bin Type
      • Bin Mode
      • Bin Status
    • Card
      • Card Status
      • Card Trade
        • Card Trade Type
        • Card Trade Result
    • Order
      • Card Type
      • Order Type
      • Order Status
      • Order Bill
        • Order Bill Type
        • In Out Type
        • Bill Category
    • Payee
      • Payee Status
    • Payment
      • Fee Mode
      • Payment Status
  • Webhook
    • Card Notify
      • Order
      • Card
      • Card Trade
    • Payee Notify
    • Payment Notify
    • Wallet Notify
  • Api
    • Wallet
      • 钱包列表
      • 钱包详情
      • 交易流水列表
      • 交易详情
      • 获取兑换汇率
    • Card
      • Bin
        • 卡Bin列表
        • 卡Bin详情
        • 卡Bin费用
        • 卡Bin限制
      • Card
        • 卡列表
        • 卡详情
        • 卡激活
        • 卡冻结
        • 卡解冻
        • 发起销卡
        • 卡交易列表
        • 商户交易评分
      • Order
        • 开卡
        • 卡充值
        • 订单列表
        • 订单详情
      • Holder
        • 持卡人列表
          POST
        • 创建持卡人
          POST
        • 编辑持卡人
          POST
        • 持卡人详情
          POST
        • 删除持卡人
          POST
    • PayMethod
      • 付款方式
    • Payee
      • 运营资金来源列表
      • 预期付款目的列表
      • 创建收款方
      • 编辑收款方
      • 申请收款方
      • 删除收款方
      • 收款方列表
      • 收款方详情
    • Payment
      • 付款原因
      • 创建付款
      • 付款列表
      • 付款详情
  1. Holder

持卡人列表

POST
/{{version}}/openApi/holder/holderList

使用场景#

 获取持卡人列表。
请求参数#
Http Post Application/json
字段类型是否必传描述
customer_idlong是客户id
app_idlong是应用id
keystring是授权key
statusint否状态 0:待提交; 1:待审批 2:审批通过; 3:审批拒绝
page_noint是页码
page_sizeint是每页记录数
示例
{
    "customer_id": 10000011,
    "app_id": 100001,
    "key": "ae9ae3f5ad284ef4836de18aa3d41c47",
    "page_no":1,
    "page_size": 10
}
响应内容#
字段类型是否必传描述
totalint是总数
page_noint是当前页码
page_sizeint是当前每页记录数
holder_listarray[object]是持卡人数组
holder_list.holder_idstring是持卡人 id
holder_list.customer_idlong是客户 id
holder_list.first_namestring是中文 名
holder_list.last_namestring是中文 姓
holder_list.first_name_enstring是英文 名
holder_list.last_name_enstring是英文 姓
holder_list.genderint是性别 1:男 2:女
holder_list.birthdaydate是出生日期
holder_list.marital_statusint是婚姻状态 1:已婚; 2:未婚
holder_list.nationalitystring是国籍, 如 USA
holder_list.contact_areastring是联系号码区号
holder_list.contact_nostring是联系号码
holder_list.emailstring是邮箱
holder_list.addressstring是地址
holder_list.provincestring是州/省
holder_list.citystring是城市
holder_list.countrystring是国家
holder_list.post_codestring是邮编
holder_list.id_card_typeint是证件类型 1:中华人民共和国身份证
1:中华人民共和国身份证
2:香港永久性居民身份证
3:香港护照
4:香港内地旅行证
5:香港居留许可
6:其他
7:外国身份证
8:护照
holder_list.id_card_nostring是证件号
holder_list.statusint是状态 0:待提交; 1:待审批 2:审批通过; 3:审批拒绝
holder_list.reject_reasonstring是拒绝原因
holder_list.create_atdatetime是创建时间
示例
{
    "code": 0,
    "message": "success",
    "data": {
        "total": 1,
        "page_no": 1,
        "page_size": 10,
        "holder_list": [
            {
                "holder_id": "hid_xfewewefwefwf",
                "customer_id": 10000011,
                "first_name": "first_name",
                "last_name": "last_name",
                "first_name_en": "first_name_en",
                "last_name_en": "last_name_en",
                "gender": 1,
                "birthday": "1990-10-28",
                "marital_status": 1,
                "nationality": "CN",
                "contact_area": "+86",
                "contact_no": "13722338876",
                "email": "xxx@xxx.com",
                "address": "address......",
                "province": "广东省",
                "city": "深圳市",
                "country": "CN",
                "post_code": "518000",
                "id_card_type": 1,
                "id_card_no": "440304199010282934",
                "status": 2,
                "reject_reason": "",
                "create_at": "2023-10-24 06:16:39"
            }
        ]
    }
}

请求参数

Body 参数application/json

示例
{
    "customer_id": 10000011,
    "app_id": 100001,
    "key": "ae9ae3f5ad284ef4836de18aa3d41c47",
    "page_no":1,
    "page_size": 10
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'http://prod-cn.your-api-server.com/{{version}}/openApi/holder/holderList' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customer_id": 10000011,
    "app_id": 100001,
    "key": "ae9ae3f5ad284ef4836de18aa3d41c47",
    "page_no":1,
    "page_size": 10
}'

返回响应

🟢200成功
application/json
Body

示例
{}
修改于 2026-03-19 06:16:48
上一页
订单详情
下一页
创建持卡人
Built with