v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Modes

Get card modes

Get card mode objects. A card can have both a credit and debit mode, meaning it can be used as both a credit or debit card. Each mode is associated with a credit or debit program and account. For more information, refer to the mode documentation in the Cards overview guide.

NOTE: This endpoint requires an account-specific access token - a token encoded with a Pismo account ID.

get/wallet/v2/cards/{cardId}/modes

Path parameters

cardIdstring required

Pismo card ID

Response

Cards relationship information

idinteger

Mode ID

mode'DEBIT' | 'CREDIT'

Card mode enum - DEBIT or CREDIT

program_idinteger

First program ID

customer_idinteger

Credit customer ID

account_idinteger

Credit account ID

password_triesinteger

Number of times the password was tried

transaction_limitstring

Optional for virtual cards. Maximum amount allowed per transaction. Set up to the approved limit. If not set, account limit is used.

number_of_transactionsinteger

Maximum transactions allowed

status'ACTIVE' | 'SUSPENDED'

Mode status - ACTIVE or SUSPENDED

card_ownerstring

Org ID from card's root

Example response

[
  {
    "id": 128876,
    "mode": "CREDIT",
    "program_id": 88490,
    "customer_id": 102377856,
    "account_id": 102378693,
    "password_tries": 1,
    "transaction_limit": "500.00",
    "number_of_transactions": 40,
    "status": "SUSPENDED",
    "card_owner": "TN-f878e4a1-2879-48ba-be16-821e73ac98db"
  }
]