❤️
Padiwise
  • Introductions
  • Getting Started
    • Quickstart
    • Authentication
  • Compliance
  • Errors
  • Pricing
  • Account Information
  • Value Added Services
    • Bills Overview
    • Data Bundle
    • Cable TV
    • Airtime Topup
    • Validation
    • Smm Services
    • SMS Gateway API
  • COLLECTIONS
    • Collection Overview
    • Create Virtual Account
    • Webhook
  • DISBURSEMENT
    • Disbursement Overview
    • Get All Bank List
    • Create Transfer Recipients
    • Single Transfer
  • VIRTUAL CARDS
    • Cards Overview
    • Exchange Rate
    • Create Virtual Card
    • Get Cards
    • Get Card Details
    • Get Card Transactions
    • Fund Card
    • Withdraw Card
  • Help & Support
    • Changelog
Powered by GitBook
On this page
  1. COLLECTIONS

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"
      }
}

PreviousCreate Virtual AccountNextDisbursement Overview

Last updated 20 days ago