---
title: "List Physical Card Profiles"
method: GET
path: "/physical_card_profiles"
---

# List Physical Card Profiles

`GET /physical_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 Physical Card Profiles for those with the specified 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`

Physical Card Profile List

- PhysicalCardProfileList — A list of Physical Card Profile objects.
  - `data` PhysicalCardProfile[], required — The contents of the list.
    - `back_image_file_id` string, nullable, required — The identifier of the File containing the physical card's back image. This will be missing until the image has been post-processed.
    - `carrier_image_file_id` string, nullable, required — The identifier of the File containing the physical card's carrier image. This will be missing until the image has been post-processed.
    - `contact_phone` string, nullable, required — A phone number the user can contact to 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 Physical Card Profile was created.
    - `creator` 'increase' | 'user', required — The creator of this Physical Card Profile.
    - `description` string, required — A description you can use to identify the Physical Card Profile.
    - `front_image_file_id` string, nullable, required — The identifier of the File containing the physical card's front image. This will be missing until the image has been post-processed.
    - `front_text` object, nullable, required — Text printed on the front of the card. Reach out to [support@increase.com](mailto:support@increase.com) for more information.
      - `line1` string, required — The first line of text on the front of the card.
      - `line2` string, nullable, required — The second line of text on the front of the card. Providing a second line moves the first line slightly higher and prints the second line in the spot where the first line would have otherwise been printed.
    - `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).
    - `is_default` boolean, required — Whether this Physical Card Profile is the default for all cards in its Increase group.
    - `program_id` string, required — The identifier for the Program this Physical Card Profile belongs to.
    - `status` 'pending_creating' | 'pending_reviewing' | 'rejected' | 'pending_submitting' | 'active' | 'archived', required — The status of the Physical Card Profile.
    - `type` 'physical_card_profile', required — A constant representing the object's type. For this resource it will always be `physical_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/c6111f49e8b7/schema)
