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.
Programs & Products
How It Fits Together
Programs
A program is the contractual and regulatory container negotiated between your business and FYATU. It establishes the card network (Visa or Mastercard), the base currency, the program ledger, and the top-level compliance rules. Programs are created and configured exclusively by the FYATU team. You read and monitor them via the API.Program Statuses
| Status | Description |
|---|---|
ACTIVE | Fully operational — products can issue cards |
PAUSED | Temporarily suspended — new cards blocked, existing cards unaffected |
CLOSED | Permanently closed — no new operations permitted |
The Program Ledger
Every program holds a pre-funded balance — the program ledger — that backs all card funding operations.POST /cards/{id}/fund debits the program ledger and credits the card. Unloading or terminating a card returns balance to the ledger. No money leaves FYATU via the API — withdrawals go through the portal.
Low balance alert: when the ledger drops below lowBalanceThreshold, a PROGRAM_BALANCE_LOW webhook fires. Subscribe to it to automate top-up alerts.
Products
A product is a card template defined within a program. It encodes everything that is fixed at card issuance: the card scheme, currency, spending limits, 3DS, and tokenization settings. When you issue a card, you specify aproductId — all card settings are inherited from the product automatically.
Product Fields
| Field | Description |
|---|---|
productId | Unique product identifier — pass this to POST /cards |
name | Product name (e.g. “Visa USD Standard”) |
scheme | VISA or MASTERCARD |
currency | ISO 4217 currency for cards under this product |
type | Card form factor: VIRTUAL |
transactionLimit | Maximum single transaction amount |
dailyLimit | Daily spending cap |
monthlyLimit | Monthly spending cap |
is3DSEnabled | Whether 3D Secure is enabled for cards under this product |
isTokenizationEnabled | Apple Pay / Google Pay support |
isJITEnabled | Just-In-Time funding mode |
status | ACTIVE or INACTIVE |
Discovering Available Products
Before issuing cards, list the products available in a program:productId when creating cards:
Feature Flag Immutability
Once any cards have been issued under a product, the feature flags (is3DSEnabled, isTokenizationEnabled, isJITEnabled) become immutable. These settings are baked into the card at the provider level and cannot be changed retroactively. To change feature flags, create a new product and issue future cards against it.
Amount Representation
All monetary amounts in the CaaS API are returned as both a raw integer (cents) and a display string (displayValue):
cents for arithmetic and comparisons. Use displayValue for display only. Fund and unload operations accept a float dollar amount in the request body (e.g. 50.00 for fifty dollars).
Endpoints
GET /programs— List programsGET /programs/{id}— Get programGET /programs/{programId}/products— List products in a program
Programs and Products are read-only from the API. Configuration changes (limits, feature flags, new products) are made in the CaaS portal by the FYATU team.

