Card state model
FINCI separates card stage from card status.
That distinction is important for a correct internal model and transaction-handling logic.
Card stage
Card stage describes the physical fulfillment state of the card.
It should be treated only as a physical card ordering and delivery indicator.
Supported values and meanings:
digitalThe card is not currently in a physical delivery stage.plastic_not_deliveredA physical card has been ordered but has not yet been delivered.plastic_deliveredThe physical card has been delivered to the cardholder.
Card stage does not determine whether the card can transact.
Card status
Card status describes whether and how the card can be used operationally.
newCard exists but is not yet activated for transactions.activeCard can be used for transactions.blockedCard is blocked from use and should be treated as a permanent restriction state.closedCard has been permanently closed.compromizedCard is compromised.damagedCard is physically damaged.deactivatedCard is temporarily suspended and may later be reactivated.lostCard has been reported lost.referralDormant card.stolenCard has been reported stolen.
Possible status transitions
The API reference defines the available status values and the status-update endpoint, but it does not define a formal status-transition contract.
Use the following diagram as a practical working model and confirm any product-specific exceptions with FINCI.
newandactivecan both be initial issuance states, depending on the agreed issuance flowdeactivatedis a temporary suspension state and may return toactiveblocked,closed,compromized,damaged,lost, andstolenare end states for ongoing card use
Modeling guidance
The integrator platform should model:
- stage as a fulfillment concept
- status as an operational control concept
A physical card can move through stage changes without changing its allowed usage model. A status change, however, may directly affect transaction approval outcomes.