---
title: "Get card modes"
method: GET
path: "/wallet/v2/cards/{cardId}/modes"
tags: ["Modes"]
---

# Get card modes

`GET /wallet/v2/cards/{cardId}/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](https://developers.pismo.io/pismo-docs/docs/cards-overview-1#create-a-combination-card-with-card-modes) in the Cards overview guide.

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

## Path parameters

- `cardId` string, required

## Response `200`

Cards relationship information

- object[] — Get information about a card's modes (credit or debit)
  - `id` integer — Mode ID
  - `mode` 'DEBIT' | 'CREDIT' — Card mode enum - `DEBIT` or `CREDIT`
  - `program_id` integer — First program ID
  - `customer_id` integer — Credit customer ID
  - `account_id` integer — Credit account ID
  - `password_tries` integer — Number of times the password was tried
  - `transaction_limit` string — Optional for virtual cards. Maximum amount allowed per transaction. Set up to the approved limit. If not set, account limit is used.
  - `number_of_transactions` integer — Maximum transactions allowed
  - `status` 'ACTIVE' | 'SUSPENDED' — Mode status - `ACTIVE` or `SUSPENDED`
  - `card_owner` string — Org ID from card's root

## Other responses

- `401` — Access token is missing or invalid
- `403` — The request has been lost
- `409` — You already have a card with this type and name active
- `500` — Internal server error

---

[API](https://skmtc.net/pismo/apis/platform-authentication.md) · [All operations](https://skmtc.net/pismo/apis/platform-authentication/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pismo/platform-authentication/revisions/935b62e16de4/schema)
