> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Instant Pay Wallet Transaction Event

> This endpoint specifies what will be sent to your Instant Pay Wallet Webhook.

This endpoint specifies what will be sent to your Instant Pay Wallet Webhook. Zeal POSTs a request containing the Wallet Transaction object when there is a new credit or debit Wallet Transaction. You can update and test the webhook URL you want Zeal to hit on the 'API' Page of the Zeal Dashboard.

***

## Returns

Doesn't return anything but rather POSTs a request with a Wallet Transaction.

***

## Raw Content Example

```json Wallet Credit Transaction theme={null}
{
  "test": false,
  "walletTransactionID": "c2213b02e052f60cfb0e4ba4",
  "type": "credit",
  "companyID": "bf015b00e052f60cfb0e4a0d",
  "employeeID": "d210f054bf5b006f50aecbe0",
  "contractorID": null,
  "gross_amount": 1000,
  "partner_fee": 0,
  "zeal_fee": 0,
  "net_amount": 1000,
  "last_four": null,
  "timestamp": "2024-01-21T21:29:42Z"
}
```

```json Wallet Debit Transaction (Transfer) theme={null}
{
  "test": false,
  "walletTransactionID": "c2213b02e052f60cfb0e4ba4",
  "type": "debit",
  "companyID": "bf015b00e052f60cfb0e4a0d",
  "employeeID": "d210f054bf5b006f50aecbe0",
  "contractorID": null,
  "gross_amount": 102,
  "partner_fee": 1,
  "zeal_fee": 1,
  "net_amount": 100,
  "last_four": "0432",
  "timestamp": "2024-01-21T21:29:42Z"
}
```
