> ## 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.

# Card Post-Termination Refund

> Sent when funds arrive on an already-terminated card and are refunded to your business wallet.

Fired when money lands on an **already-terminated** card and is returned to your business wallet. This happens for:

* a later reconciliation/discrepancy refund from the provider, or
* a merchant refund that posts to a card after it was terminated.

Unlike [`card.termination_refund`](/v3/webhooks/webhook-events/card-termination-refund), this event can fire **multiple times** for the same card. Each delivery carries a distinct `reference` (the provider transaction id) and is credited exactly once — always deduplicate on `reference`.

<RequestExample>
  ```json Webhook Payload theme={null}
  {
    "event": "card.termination_refund_post",
    "version": "3.0",
    "eventId": "6b2c9a1d-7e4f-40a8-b3c2-1f9e8d7c6b5a",
    "sign": "8c4768fa5a3e8a36d69942bc066f2c236e920701fa5a4348e3075aa7ead3588",
    "data": {
      "cardId": "a4e8f2b6c9d1e3f7a2b5c8d0e4f1a3b6c9d2e5f8a1b4c7d0e3",
      "cardholderId": "8f4e2a1b3c5d7e9f0a2b4c6d8e0f1a3b5c7d",
      "amount": 4.25,
      "currency": "USD",
      "reference": "a1b2c3d4e5f6a7b8c9d0e1f2",
      "appId": "A1B2C3D4E5F6G7H8",
      "timestamp": "2026-07-08T14:30:00Z"
    }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {}
  ```
</ResponseExample>


## OpenAPI

````yaml v3/openapi.json webhook card.termination_refund_post
openapi: 3.1.0
info:
  title: FYATU API v3
  description: >-
    FYATU API v3 with JWT authentication for Collections, Payouts, and Card
    Issuing.
  version: 3.0.0
  contact:
    name: FYATU Support
    url: https://fyatu.com
    email: support@fyatu.com
servers:
  - url: https://api.fyatu.com/api/v3
    description: Production
security: []
tags:
  - name: Authentication
    description: JWT token management endpoints
  - name: Account
    description: Business account, wallet, and address management
  - name: Collections
    description: Accept payments from customers via checkout sessions
  - name: Refunds
    description: Issue refunds for completed collections
  - name: Payouts
    description: Send money to Fyatu account holders
  - name: Cardholders
    description: Cardholder management for card issuing programs
  - name: Cards
    description: Issue, fund, freeze, and manage virtual cards
  - name: Webhooks
    description: Webhook configuration and management
paths: {}

````