Overviewβ
Card Product Name is the name used to identify a specific card product, card range, or card issuance program. Each card product defines a predefined set of card attributes and rules, such as:
- BIN/Card Range.
- Country of Issuance.
- Card Network (e.g., Mastercard, Visa).
INFO
Card Product Name is one of the required parameters for card creation. Obtain product_name first, and then provide it when calling the Create Card.
Query Card Product Namesβ
Query the available Card Product Names based on the account card type {program_value}.
- Request
cURL -X GET /v1/cards/products/{program_value}
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
- Response
{
"code": "200",
"msg": "SUCCESS",
"data": {
"program_value": 2,
"total_count": "1",
"products": [
{
"product_name": "***26452HKMastercard"
}
]
}
}
| Parameter | Type | Description | Example |
|---|---|---|---|
program_value | int | Account card type | 2 |
total_count | int | Total card products | 1 |
products | array | Card product list | - |
products.product_name | string | Card product name | ***26452HKMastercard |