Card Products
Retrieves a list of available card products with pricing information.
Get Available Card Products
Endpoint: GET /products
Response:
[
{
"productCode": "W0193384.3884",
"currency": "USD",
"issueMinAmount": 50,
"issueMaxAmount": 5000,
"topUpMinAmount": 10,
"topUpMaxAmount": 5000
},
{
"productCode": "D02111099",
"kycSort": "D02",
"currency": "USD",
"topUpMinAmount": 20,
"topUpMaxAmount": 1000000,
"issueMinAmount": 20,
"issueMaxAmount": 100000,
"params": {
"issueCardEmailRequired": true
}
}
]Response Parameters:
productCode
String
Unique identifier for the card product
currency
String
Supported currency (USD, EUR)
issueMinAmount
Decimal
Minimum amount required when issuing this card product
issueMaxAmount
Decimal
Maximum amount allowed when issuing this card product
topUpMinAmount
Decimal
Minimum amount required for topping up this card product
topUpMaxAmount
Decimal
Maximum amount allowed for topping up this card product
kycSort
String
The type of KYC that must be completed before card issuance.
params
Object
Optional product-specific parameters and requirements
Product-specific parameters(params)
params.issueCardEmailRequired
Boolean
Indicates if email is required when issuing this card product
params.cardValidityPeriodSupported
Boolean
Indicates if custom card validity period (1-4 years) is supported for this product.
Notes:
The
topUpMinAmountandissueMinAmountfields define the minimum amounts for card operations.
Last updated