- Introduction
- Authorization
- Beneficiaries
- Cards
- Card Programs
- Clients
- Endusers
- Transactions
- Wallets
- Relays
- Webhooks
Get all programs
GET
/customers/v1/card-programs
Card Programs
Request
Header Params
Authorization
string
required
Example:
Bearer {{access_token}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/customers/v1/card-programs' \
--header 'Authorization: Bearer {{access_token}}'
Responses
🟢200OK
application/json
Body
array of:
id
string <uuid>
required
type
enum<string>
required
Allowed values:
VIRTUALPHYSICAL
created_at
string <date-time>
required
updated_at
string <date-time>
required
status
enum<string>
required
Allowed values:
ACTIVEINACTIVE
partner_product
enum<string>
required
Allowed value:
KOBBLE_DEBIT_1
metadata
object
required
Example
[
{
"id": "1b8ecc17-4edd-4b74-ae4f-208aeb78f105",
"type": "VIRTUAL",
"created_at": "2025-01-14T11:23:51.457Z",
"updated_at": "2025-01-14T11:23:51.457Z",
"status": "ACTIVE",
"partner_product": "KOBBLE_DEBIT_1",
"metadata": {}
},
{
"id": "1b8ecc17-4edd-4b74-ae4f-208aeb78f105",
"type": "VIRTUAL",
"created_at": "2025-01-13T17:32:03.718Z",
"updated_at": "025-01-13T17:32:03.718Z",
"status": "INACTIVE",
"partner_product": "KOBBLE_DEBIT_1",
"metadata": {}
},
{
"id": "1b8ecc17-4edd-4b74-ae4f-208aeb78f105",
"type": "VIRTUAL",
"created_at": "2025-01-14T09:16:50.101Z",
"updated_at": "2025-01-14T09:16:50.101Z",
"status": "INACTIVE",
"partner_product": "KOBBLE_DEBIT_1",
"metadata": {}
}
]