> ## Documentation Index
> Fetch the complete documentation index at: https://developer.finogates.com/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet.funding.failed

> Sent when a wallet funding request fails.

The `wallet.funding.failed` event is sent when a wallet funding request **fails** and reaches a **final, non-recoverable state**.

After this event is emitted, the funding attempt will not continue processing.

***

## Example Payload

```json theme={null}
{
  "event": "wallet.funding.failed",
  "id": "757a92ca-1138-4a45-8f15-03dd4529230a",
  "data": {
    "payment_id": "757a92ca-1138-4a45-8f15-03dd4529230a",
    "status": "failed",
    "amount": 100.0,
    "failed_reason": "Insufficient balance"
  },
  "eventGeneratedTime": 1756729948.128641
}
```

***

## Data Fields

<ResponseField name="payment_id" type="string">
  Unique identifier of the wallet funding transaction.
</ResponseField>

<ResponseField name="status" type="string">
  Final funding status. Always <code>failed</code> for this event.
</ResponseField>

<ResponseField name="amount" type="float">
  Funding amount expressed in the major currency unit (for example, USD).
</ResponseField>

<ResponseField name="failed_reason" type="string">
  Human-readable explanation describing why the wallet funding failed.
</ResponseField>

***

## Handling the Event

Use this event to:

* Mark the funding transaction as failed
* Display the failure reason to the user
* Prevent retries without user intervention, if applicable
* Log failure details for auditing and analysis

***
