1. Card
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
        • 卡列表
          POST
        • 卡详情
          POST
        • 卡激活
          POST
        • 卡冻结
          POST
        • 卡解冻
          POST
        • 发起销卡
          POST
        • 卡交易列表
          POST
        • 商户交易评分
          POST
      • Order
        • 开卡
        • 卡充值
        • 订单列表
        • 订单详情
      • Holder
        • 持卡人列表
        • 创建持卡人
        • 编辑持卡人
        • 持卡人详情
        • 删除持卡人
    • PayMethod
      • 付款方式
    • Payee
      • 运营资金来源列表
      • 预期付款目的列表
      • 创建收款方
      • 编辑收款方
      • 申请收款方
      • 删除收款方
      • 收款方列表
      • 收款方详情
    • Payment
      • 付款原因
      • 创建付款
      • 付款列表
      • 付款详情
  1. Card

卡列表

POST
/{{version}}/openApi/card/cardList

使用场景#

 获取卡列表。
请求参数#
Http Post Application/json
字段类型是否必传描述
customer_idlong是客户id
app_idlong是应用id
keystring是授权key
bin_idstring否bin id
card_nostring否卡号
statusint否状态 1:未激活 2:已激活 3:已冻结 4:销卡中 5:已销卡 6:已挂失 7:已补卡
page_noint是页码
page_sizeint是每页记录数
示例
{
    "customer_id": 10000011,
    "app_id": 100001,
    "key": "ae9ae3f5ad284ef4836de18aa3d41c47",
    "page_no": 1,
    "page_size": 10
}
响应内容#
字段类型是否必传描述
totalint是总数
page_noint是当前页码
page_sizeint是当前每页记录数
card_listarray[object]是卡数组
card_list.app_idlong是应用 id
card_list.card_idstring是卡 id
card_list.bin_idstring是bin id
card_list.holder_idstring是持卡人 id
card_list.card_nostring是卡号
card_list.balancefloat是余额,单位:元
card_list.limitfloat是累计充值,单位:元
card_list.expirystring是过期时间, 月/年
card_list.cvvstring是cvv
card_list.pinstring是pin
card_list.statusint是状态 1:未激活 2:已激活 3:已冻结 4:销卡中 5:已销卡 6:已挂失 7:已补卡
card_list.use_atdatetime是激活时间
card_list.close_atdatetime是发起销卡时间
card_list.end_atdatetime是完成销卡时间
示例
{
    "code": 0,
    "message": "success",
    "data": {
        "total": 2,
        "page_no": 10,
        "page_size": 1,
        "card_list": [
            {
                "app_id": 100001,
                "card_id": "82cc95353d901fbcda9fe1385f68f29a",
                "bin_id": "cpi_6530de6a2f1c7",
                "holder_id": "",
                "card_no": "345432552191529",
                "balance": 200.5,
                "limit": 440.5,
                "expiry": "03/28",
                "cvv": "715",
                "pin": "",
                "status": 2,
                "use_at": "2023-11-24 02:53:47",
                "close_at": "",
                "end_at": "",
                "mark": ""
            },
            {
                "app_id": 100001,
                "card_id": "4b7614889a86efc9249c2c14e349b7a4",
                "bin_id": "cpi_6530de6a2f1c7",
                "holder_id": "",
                "card_no": "4485333916826937",
                "balance": 200.5,
                "limit": 401.49,
                "expiry": "03/28",
                "cvv": "183",
                "pin": "",
                "status": 2,
                "use_at": "2023-11-24 02:53:47",
                "close_at": "",
                "end_at": "",
                "mark": ""
            }
        ]
    }
}

请求参数

Body 参数application/json

示例
{
    "customer_id": 10001004,
    "app_id": 100006,
    "key": "0408ab79eb214e7d81d9fd447b5916a2",
    "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/card/cardList' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customer_id": 10001004,
    "app_id": 100006,
    "key": "0408ab79eb214e7d81d9fd447b5916a2",
    "page_no": 1,
    "page_size": 10
}'

返回响应

🟢200成功
application/json
Body

示例
{}
修改于 2026-03-19 06:16:48
上一页
卡Bin限制
下一页
卡详情
Built with