Withdraw/Payout Final State

Triggered when a merchant-initiated fund withdrawal reaches its final state. Useful for confirming whether the payout has been successfully completed or failed.

Event metadata

  • name: ACQUIRING
  • types:
    • acquiring.payout.succeeded
    • acquiring.payout.failed
    • acquiring.payout.created

Request body

FieldsData TypeDescription
event_idstringA unique ID for the event.
event_namestringEvent name.
event_typestringEvent type.
source_idstringPayout id
versionstringAPI Version number.
dataobjectRelated business objects.

Notification example

{
    "version": "V1.6.0", 
    "event_name": "ACQUIRING", 
    "event_type": "acquiring.payout.succeeded", 
    "event_id": "7333c464-9751-4789-93f8-73404b536521", 
    "source_id": "1799023456789", 
    "data": {
        "payout_id": "1799023456789",
        "account_id":"2024102509915950201",
        "account_name":"Account Name",
        "payout_amount": "10.12",
        "payout_currency": "SGD",
        "payout_reference":"",
        "create_time": "2024-03-01T00:00:00+08:00",
        "complete_time": "2024-03-01T00:00:00+08:00",
        "payout_status": ""
    }
}