Webhook

This webhook event is triggered when a DVA (Dedicated Virtual Account) has been successfully funded. It provides detailed transaction information about the amount, charges, settlement amount, and the

Event Details

charge.success

This event indicates that the DVA account funding has been successfully processed.

HTTP Method: POST

The request is sent as a JSON payload with the following structure:

Response Body

{
  "statuscode": 200,
  "status": true,
  "message": "DVA Account Funding",
  "channel": "dedicated_account",
  "event_type": "charge.success",
        "data": {
            "amount": 1000.00,
            "charges": 12.0,
            "settlementAmount": 988.00,
            "reference_id": "ref_123456789",
            "status": "completed",
            "transaction_type": "DVA",
            "transaction_status": "credited",
            "name": "John Doe",
            "email": "johndoe@example.com",
            "customer_code": "customer_123",
            "type": "RESERVED_ACCOUNT",
            "paidOn": "2025-05-14T12:00:00"
      }
}

Last updated