Skip to main content

List wallet cards

GET 

/cards/wallet

List debit cards by wallet.

This endpoint:

  • Lists all cards for a specific wallet
  • Includes card details and status
  • Provides pagination support
  • Returns card type information

Request

Query Parameters

    walletId stringrequired

    The ID of the wallet whose cards to retrieve

    startAfterId string
    limit number

Responses

The wallet cards were successfully retrieved.

Schema

    traceId string
    message string

    data

    object[]

  • Array [

  • id stringrequired

    Unique identifier of the card

    referenceNumber stringrequired

    The system card reference number

    lastDigits stringrequired

    Last 4 digits of cards number

    expiryDate stringrequired

    Expiration date

    status stringrequired

    Possible values: [ACTIVE, BLOCKED, SUSPENDED, CANCELLED]

    Current status of the card

    isVirtual booleanrequired

    Whether the card is virtual

    isPrimary booleanrequired

    Whether the card is the primary card

    nickname string

    Custom nickname for the card

    type stringrequired

    Possible values: [credit, debit]

    Type of the card

    customerId stringrequired

    ID of the customer who owns the card

    walletId string

    ID of the wallet the card is linked to (for debit cards)

  • ]

  • pagination

    object

    totalResults numberrequired
    hasMoreResults booleanrequired
Loading...