1. 开卡
Elaypay
  • 接入指南
  • 解密指南
  • 卡交易
    • 交易查询
      • Page Transactions
      • List Transactions
      • Get Transaction Detail
    • 交易字典
      • List Transaction Types
      • List Transaction Statuses
      • List Merchant Countries
      • List Fund Flow Types
  • 卡管理
    • 卡片查询
      • List Cards
      • Get Card
      • Reveal Sensitive Card
    • 开卡
      • Precheck Create Card
        POST
      • Create Card
        POST
      • Page Card Batch Items
        GET
      • Get Card Batch
        GET
    • 卡片设置
      • Update Card Spending Control
      • Update Card Remark
    • 卡片状态
      • Freeze Card
      • Unfreeze Card
      • Cancel Card
  • 参考数据
    • 商户数据
      • List Reference Merchants
      • Get Reference Merchant
    • 国家地区
      • Get Slash Countries
    • 消费控制
      • Get Slash Spending Restrictions
      • Get Slash Spending Presets
  • 卡产品
    • 产品组
      • Page Groups
      • List Groups
    • 产品查询
      • Page Products
      • List Products
      • Get Product Detail
    • 配置模型
      • Get Provider Product Config Schema
      • Get Provider Card Settings Schema
  • 钱包
    • 钱包查询
      • Page Wallets
      • List Wallets
      • Get Wallet
    • 账本
      • List Ledger
      • Page Ledger
      • Get Ledger
    • 资金划转
      • Transfer Out
      • Transfer In
    • 转账订单
      • List Transfers
      • Get Transfer
      • Page Transfers
      • Cancel
    • 转账字典
      • List Order Statuses
      • List Directions
      • List Approval Statuses
  1. 开卡

Page Card Batch Items

GET
/api/v1/consumer/card-products/cards/batches/items/page

Query Scope#

batchBizId is optional.
When provided, only items from that batch are returned and the batch must belong to the current Consumer workspace.
When omitted or blank, all card-creation batch items in the current Consumer workspace are returned.
Results never include batches owned by another workspace.
Every item includes its batchBizId.

Gateway Contract#

Chain: API
Portal: CONSUMER
JWT token enabled: false
Workspace kind: LIVE
Workspace portal: CONSUMER
Workspace permission: card:read
Rate limit: 120 / 60s
Rate limit strategy: IP

Common Errors#

CodeWhen
RESOURCE.NOT_FOUNDA supplied batchBizId is not found or belongs to another workspace

请求参数

Query 参数

Header 参数

返回响应

🟢200成功
*/*
OK
Body*/*

请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location 'https://api.elaypay.app/api/v1/consumer/card-products/cards/batches/items/page?batchBizId=CCB_ABCDEF1234567890&page=undefined&size=undefined' \
--header 'X-Api-Key;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Signature;' \
--header 'X-Signature-Algorithm;' \
--header 'X-Workspace-Id;'
响应示例响应示例
{
    "version": "string",
    "timestamp": 0,
    "success": true,
    "code": "string",
    "message": "string",
    "data": {
        "items": [
            {
                "batchBizId": "CCB_ABCDEF1234567890",
                "itemSeq": 0,
                "status": {
                    "code": "ACTIVE",
                    "value": 35010102,
                    "label": "Active"
                },
                "cardInfoBizId": "CI_ABCDEF1234567890",
                "failureReasonCode": "BALANCE_INSUFFICIENT",
                "failureDetail": "string"
            }
        ],
        "pagination": {
            "totalPages": 0,
            "totalRecords": 0,
            "currentPage": 0,
            "pageSize": 0,
            "hasNext": true,
            "paginated": true,
            "empty": true
        }
    }
}
修改于 2026-07-15 12:11:42
上一页
Create Card
下一页
Get Card Batch
Built with