List Cardholders
Cardholders
List Cardholders
List all cardholders in your Fyatu card program with pagination and KYC status filtering. GET /cardholders.
GET
List Cardholders
Documentation Index
Fetch the complete documentation index at: https://docs.fyatu.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Retrieve a paginated list of cardholders associated with your application. Use filters to narrow down results by status, KYC status, or search terms.Query Parameters
| Parameter | Type | Description |
|---|---|---|
page | integer | Page number (default: 1) |
limit | integer | Items per page (default: 20, max: 100) |
status | string | Filter by status (ACTIVE, INACTIVE, SUSPENDED) |
kycStatus | string | Filter by KYC status (UNSUBMITTED, PENDING, VERIFIED, REJECTED) |
search | string | Search by name or email (partial match) |
Response
| Field | Type | Description |
|---|---|---|
cardholders | array | List of cardholder objects |
pagination | object | Pagination info |
Cardholder Object (Summary)
| Field | Type | Description |
|---|---|---|
id | string | Unique cardholder identifier |
externalId | string | Your system’s identifier (nullable) |
firstName | string | First name |
lastName | string | Last name |
email | string | Email address |
phone | string | Phone number |
status | string | Cardholder status |
kycStatus | string | KYC verification status |
cardsCount | integer | Number of active cards |
createdAt | string | Creation timestamp |
Example Usage
Example Response
Filtering Tips
By KYC Status
Search by Name or Email
Combine Filters
Authorizations
JWT access token obtained from /auth/token
Query Parameters
Page number (default: 1)
Items per page (default: 20, max: 100)
Required range:
x <= 100Filter by cardholder status
Available options:
ACTIVE, INACTIVE, SUSPENDED Filter by KYC verification status
Available options:
UNSUBMITTED, SUBMITTED, ACCEPTED, REJECTED Search by name or email (partial match)

