Card Events
CARD_TERMINATION_REFUND_POST
Fired when funds arrive on an already-terminated card and are refunded back to your program.
WEBHOOK
Fires when money lands on an already-terminated card and is returned to your program balance. This happens for:
- a later reconciliation/discrepancy refund from the provider, or
- a merchant refund that posts to a card after it was terminated.
CARD_TERMINATION_REFUND, this event can fire multiple times for the same card — once per incoming refund. Each delivery carries a distinct reference (the provider transaction id) and is credited exactly once.
Event Type
Payload
Payload Fields
| Field | Type | Description |
|---|---|---|
cardId | string | The terminated card the refund posted to |
cardholderId | string | The cardholder the card belonged to |
amount | number | Refunded amount, credited to your program balance |
currency | string | ISO-4217 currency of the refund |
reference | string | Provider transaction id — unique per refund; use it as your idempotency key |
timestamp | string | ISO 8601 time the refund was processed |
Common Use Cases
- Capture merchant refunds that arrive after a card is terminated
- Reconcile discrepancy refunds against your program ledger
Always deduplicate on
reference. Because this event can fire several times for one card,
per-card deduplication would incorrectly drop legitimate later refunds.Authorizations
API key from the FYATU CaaS portal. Pass as Authorization: Bearer <key>.
Body
application/json
Response
200
Acknowledge the event.

