---
title: "List Cardholders"
method: GET
path: "/open-api/v3/cardholders"
tags: ["Cardholder"]
---

# List Cardholders

`GET /open-api/v3/cardholders`

## Query parameters

- `accountId` string, uuid, required — The UUID of the Account.
- `id` string — The Id of the Cardholder.
- `status` 'ACTIVE' | 'PENDING' | 'INACTIVE' — The status of the Cardholder.
- `email` string — User’s email address. Example: user@example.com
- `referenceId` string — Unique identifier for referencing the associated request or resource.
- `limit` string, number — Limits the number of items to be returned.
- `page` string, number — The page to be returned, counting from 1 as the first page.

## Response `200`

OK

- CardholderPageRespDTO
  - `code` string — Error code
  - `message` string — Error message
  - `data` CardholderPageResponse, required — data
    - `total` integer, required — total number
    - `list` Cardholder[], required — data list
      - `id` string, required — cardholderId
      - `accountId` string, required — accountId
      - `status` string, required — status
      - `firstName` string, required — first name
      - `lastName` string, required — last name
      - `userName` string, required — user name
      - `email` string, required — email
      - `phoneNumber` string — Phone number without the country code, length ≤ 15. Example: 13800138000
      - `phoneCountryCode` string — The international dialing code of the cardholder's mobile phone, numbers only, no "+", length ≤ 3. Example: 86
      - `dob` string — Date of birth in YYYY-MM-DD format. Example: 1990-01-01
      - `nationality` string — Two-letter country code of nationality, as defined in ISO 3166-1 alpha-2. Example: US
      - `rejectReason` string — Reject reason
      - `address` Address — Mailing or billing address
        - `addressLine1` string, required — Primary address line (Street address / PO Box / Company name). English letters only, numbers and common symbols allowed.
        - `addressLine2` string — Secondary address line (Apartment / Suite / Unit / Building). English letters only, numbers and common symbols allowed.
        - `city` string, required — City. English letters and spaces only.
        - `state` string, required — **State / County / Province / Region**: Required for all countries. - For the US and Canada: must provide the subdivision using the two-letter code (e.g., WA for Washington State). - For other countries without a state/province, repeat the country name. - Allowed characters: English letters, numbers, and common symbols.
        - `country` string, required — Two-letter country code, as defined in ISO 3166-1 alpha-2. Example: US
        - `postalCode` string, required — Postal / ZIP code of the address.
      - `referenceId` string — Unique identifier for referencing the associated request or resource.
      - `cardBinList` string[], required — bin List

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/interlace/apis/core-resource.md) · [All operations](https://skmtc.net/interlace/apis/core-resource/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/interlace/core-resource/versions/29c08a4da357/schema)
