POST /cards request and progresses
through a fixed lifecycle. This page covers the request shape, what
happens after issuance, and the errors you should handle.
Request shape
The card program fixes the card’s
currency at issuance and returns it on
the Card resource. USDB-funded cards have currency: "USD", with funding
converted at 1 USDB = 1 USD. Spending limits use the smallest unit of the
card’s currency: for a USDB-funded card, 50000 means $500.00 in USD cents.
Changing the funding source does not change the card’s currency or
spending-limit units.
The lifecycle
PENDING_KYC is also a valid status but you should not see it in v1 —
issuance is gated on KYC up front.
After issuance
POST /cards returns immediately with status: "PROCESSING". The
issuer provisions the card asynchronously; on success a
CARD.STATUS_CHANGE webhook fires with the activated Card resource
including the populated last4, expMonth, and expYear.
Revealing the PAN
To show the cardholder their full PAN, CVV, and expiry, request a reveal right before rendering:panEmbedUrl is a signed URL for the card processor’s iframe that
renders the full credentials directly to the cardholder. The full PAN
and CVV never cross your servers or Grid’s.
For cards in programs where Grid makes authorization decisions,
POST /cards/{id}/reveal is the only way to obtain a reveal URL;
cards in programs where the card issuer makes authorization decisions use
the card issuer’s challenge-based hosted reveal flow instead. The Card
resource never carries one (not in responses, not in webhook
payloads). The URL expires at expiresAt (within minutes), so request a
fresh reveal each time the cardholder asks for their details,
immediately before rendering the iframe. Never store, cache, or log the
URL. Every reveal is audit-logged.Errors to handle
Changing the funding source later
The bound funding source can be replaced after issuance viaPATCH /cards/{id} with a new fundingSource. See
Funding sources for the rules
and request example.
Listing cards
customerId, platformCardId, or status. The response is
paginated using the standard cursor shape used by other Grid list
endpoints.