Overviewβ
Retrieve a list of all card types under your account. A Partner can be associated with multiple Programs. Card issuing accounts (account_id) are created under a specific Program. A single Program supports creating multiple independent Child Account IDs under the default Account ID as separate funding pools, with isolated balances and limits between each pool.
Query Account Card Typesβ
Get the program_value for each card type:
- Resquest
cURL -X GET /card-api/v1/programs
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
- Response
{
"code": "200",
"msg": "Success",
"trace_id": "ec2cd59fba3441ac92421d6f7673c57b",
"data": [
{
"program_value": 01,
"program_cn_name": "HKD",
"program_en_name": "HKD Multi Card--Fee"
},
{
"program_value": 02,
"program_cn_name": "USD",
"program_en_name": "USD Multi Card--Fee"
},
{
"program_value": 03,
"program_cn_name": "HKD-UAT",
"program_en_name": "HKD Multi Card--UAT"
}
]
}