> For the complete documentation index, see [llms.txt](https://padiwise.gitbook.io/padiwise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://padiwise.gitbook.io/padiwise/collections/webhook.md).

# Webhook

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

```
