Contains information about card.

interface Card {
    accountId: string;
    activationDate?: string;
    availableActions?: CardAvailableAction[];
    bin?: string;
    cardId: string;
    cardType: CardType;
    createdDate: string;
    currency: string;
    customerId: string;
    deliveryAddress?: DeliveryAddress;
    expiry?: CardExpiryDate;
    externalId?: string;
    isPinSet: boolean;
    lastFour?: string;
    mobile?: string;
    programName: string;
    scheme: CardScheme;
    status: CardStatus;
    tokenizations?: MobileWalletTokenizationList;
}

Properties

accountId: string

The accountId is used for Multi-Currency Accounts.

activationDate?: string

When PHYSICAL card has been activated.

Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

Example

"2024-05-08T14:43:33Z"
availableActions?: CardAvailableAction[]

List of available actions performed on a card.

bin?: string

Card bin.

cardId: string

Card id is a unique identifier for a specific card. It will be used for most operations to the prepaid card.

cardType: CardType

Card type.

createdDate: string

Card created date.

Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

Example

"2024-05-08T14:43:33Z"
currency: string

Card currency code.

Currency alphabetic code as specified by ISO 4217.

Example

"EUR"
customerId: string

Wallet customer ID.

deliveryAddress?: DeliveryAddress

Delivery address for the card.

Card expiry.

externalId?: string

External identifier in merchant system.

isPinSet: boolean

Indicates that the card PIN has been set or not.

lastFour?: string

Card last four digits.

mobile?: string

Mobile phone number used during card creation.

programName: string

Card program name.

scheme: CardScheme

Card scheme.

status: CardStatus

Card status.

Contains a list of Mobile Wallet Tokenizations