Skip to main content

Program

Contains information about specific prepaid card program.

cardTypeCardType (string)required

Supported card types. Currently we support only VIRTUAL and PHYSICAL

Possible values: [PHYSICAL, VIRTUAL]

schemeCardScheme (string)required

Card scheme information.

  • VISA - VISA
  • MC - Mastercard The scheme is derived from the card PAN.

Possible values: [VISA, MC]

namestringrequired

Program name that will be used for card creation

Example: BRAND-PHYSICAL-MC
currenciesstring[]required

List of supported currencies. Example "EUR"

allowableCardsintegerrequired

The number of cards that can be issued with this program.

Default value: 1
isDigitalbooleanrequired

The isDigital field is related only to the 'PHYSICAL' card.

Default value: false
Program
{
"cardType": "PHYSICAL",
"scheme": "VISA",
"name": "BRAND-PHYSICAL-MC",
"currencies": [
"EUR"
],
"allowableCards": 1,
"isDigital": false
}