---
title: "List Card Profiles"
method: GET
path: "/digital_card_profiles"
---

# List Card Profiles

`GET /digital_card_profiles`

## Query parameters

- `cursor` string — Return the page of entries after this one.
- `limit` integer — Limit the size of the list that is returned. The default (and maximum) is 100 objects.
- `status.in` string[] — Filter Digital Card Profiles for those with the specified digital wallet status or statuses. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`.
- `idempotency_key` string — Filter records to the one with the specified `idempotency_key` you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).

## Response `200`

Digital Card Profile List

- DigitalCardProfileList — A list of Digital Card Profile objects.
  - `data` DigitalCardProfile[], required — The contents of the list.
    - `app_icon_file_id` string, required — The identifier of the File containing the card's icon image.
    - `background_image_file_id` string, required — The identifier of the File containing the card's front image.
    - `card_description` string, required — A user-facing description for the card itself.
    - `contact_email` string, nullable, required — An email address the user can contact to receive support for their card.
    - `contact_phone` string, nullable, required — A phone number the user can contact to receive support for their card.
    - `contact_website` string, nullable, required — A website the user can visit to view and receive support for their card.
    - `created_at` string, date-time, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Digital Card Profile was created.
    - `description` string, required — A description you can use to identify the Card Profile.
    - `id` string, required — The Card Profile identifier.
    - `idempotency_key` string, nullable, required — The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
    - `issuer_name` string, required — A user-facing description for whoever is issuing the card.
    - `status` 'pending' | 'rejected' | 'active' | 'archived', required — The status of the Card Profile.
    - `text_color` object, required — The Card's text color, specified as an RGB triple.
      - `blue` integer, required — The value of the blue channel in the RGB color.
      - `green` integer, required — The value of the green channel in the RGB color.
      - `red` integer, required — The value of the red channel in the RGB color.
    - `type` 'digital_card_profile', required — A constant representing the object's type. For this resource it will always be `digital_card_profile`.
  - `next_cursor` string, nullable, required — A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.

## Other responses

- `4XX` — Error
- `5XX` — Error

---

[API](https://skmtc.net/increase/apis/increase-api-2.md) · [All operations](https://skmtc.net/increase/apis/increase-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/increase/increase-api-2/versions/e968bcd4dcf9/schema)
