概述
Card Product Name卡产品的名称,是用于标识特定卡产品、卡段或发卡方案的名称。每个卡产品会定义该类卡片的属性和规则,例如:
- BIN/Card Range(卡段)
- 注册地
- 卡组织(Mastercard、Visa)
信息
卡产品名称是创建卡片的必备参数之一。请先获取product_name,并在调用创建卡片时传入该参数。
查询卡产品名称
用账户卡类型{program_value}来查询对应的卡产品名称:
- Request
cURL -X GET /v1/cards/products/{program_value}
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
- Response
{
"code": "200",
"msg": "操作成功",
"data": {
"program_value": 2,
"total_count": "1",
"products": [
{
"product_name": "***26452香港Mastercard"
}
]
}
}
| 参数名 | 类型 | 描述 | 示例 |
|---|---|---|---|
program_value | int | 账户卡类型 | 2 |
total_count | int | 卡产品总数 | 1 |
products | array | 卡产品列表 | - |
products.product_name | string | 卡产品名称 | ***26452香港Mastercard |