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.initiated event is sent when a wallet funding request has been successfully initiated. This indicates that the funding process has started but has not yet entered processing or completed.

Example Payload

{
  "event": "wallet.funding.initiated",
  "id": "1a073f1c-6770-4851-b06a-9e707da01559",
  "data": {
    "payment_id": "1a073f1c-6770-4851-b06a-9e707da01559",
    "status": "initiated",
    "amount": 200.0
  },
  "eventGeneratedTime": 1756729948.128641
}

Data Fields

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

Handling the Event

Use this event to:
  • Record the initiation of wallet funding
  • Transition the funding into an active state
  • Prevent duplicate funding attempts
  • Monitor wallet funding flow progression