Skip to main content

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.

The wallet.funding.rejected event is sent when a wallet funding request is rejected before completion. This typically occurs due to compliance checks, risk evaluation, or policy restrictions.

Example Payload

{
  "event": "wallet.funding.rejected",
  "id": "c4e71799-fd67-4995-b06e-447c2588660a",
  "data": {
    "payment_id": "c4e71799-fd67-4995-b06e-447c2588660a",
    "status": "rejected",
    "amount": 200.0
  },
  "eventGeneratedTime": 1756729948.128641
}

Data Fields

payment_id
string
Unique identifier of the wallet funding transaction.
status
string
Final funding status. Always rejected for this event.
amount
float
Funding amount expressed in the major currency unit (for example, USD).

Handling the Event

Use this event to:
  • Mark the funding transaction as rejected
  • Notify the user of the rejection outcome
  • Prevent automatic retries
  • Record rejection details for compliance and auditing