card object.
All deliveries share the common envelope (eventId,
eventName, timestamp, programId, sandbox, customerId, clientReference).
card fields
nickName and limitGroupId are included only when set.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
These docs are a work in progress and may change. Share feedback
Fires when a new card is provisioned.
card object.
All deliveries share the common envelope (eventId,
eventName, timestamp, programId, sandbox, customerId, clientReference).
card fieldsnickName and limitGroupId are included only when set.
| Field | Type | Notes |
|---|---|---|
cardId | string | The card identifier. |
accountId | string | Account the card is attached to. |
maskedPan | string | Masked card number. |
cardType | string | e.g. VIRTUAL, PHYSICAL. |
currency | string | Card currency. |
status | string | ACTIVE, CREATED, BLOCKED, CANCELLED, EXPIRED. |
nickName | string | Optional. Customer-set label. |
limitGroupId | string | Optional. Spend-limit group. |
{
"eventId": "c9f1…",
"eventName": "NEW_CARD_ADDED",
"timestamp": "2026-06-23T12:34:56.789Z",
"programId": "yourprogram",
"sandbox": false,
"customerId": "cust_123",
"card": {
"cardId": "card_789",
"accountId": "acc_456",
"maskedPan": "528211******1234",
"cardType": "VIRTUAL",
"currency": "EUR",
"status": "CREATED",
"nickName": "Travel card",
"limitGroupId": "lg_1"
}
}