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.withdrawal.settling event is sent when a wallet withdrawal request has entered the settling stage. This indicates that the withdrawal has been processed and is awaiting final settlement with the destination bank or card.

Example Payload

{
  "event": "wallet.withdrawal.settling",
  "id": "6d6a74ab-89ae-4b2e-bcd1-a04307d7df99",
  "data": {
    "payment_id": "6d6a74ab-89ae-4b2e-bcd1-a04307d7df99",
    "status": "settling",
    "amount": 300.55
  },
  "eventGeneratedTime": 1756729948.128641
}

Data Fields

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

Handling the Event

Use this event to:
  • Update the withdrawal state to settling
  • Inform the user that funds are in final settlement
  • Prevent cancellation or modification of the withdrawal
  • Monitor settlement completion timing