> For the complete documentation index, see [llms.txt](https://payu-docs.gitbook.io/payouts-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://payu-docs.gitbook.io/payouts-integration/webhooks/types-of-webhooks.md).

# Types of webhooks

**Method :** Post&#x20;

**Headers**\
Content-Type - application/json\
\
**Request Body:**  Body for different webhook types is mentioned below along with description.

## **Low Balance webhook**

**The webhook event is generated when the merchant account has a low balance. The event signals to deposit money in the merchant virtual account so that upcoming transfer requests can be quickly processed.**

### **Example**

```
{
"event" : "LOW_BALANCE_ALERT",
"msg" : "Low Balance",
"currentBalance" : "123.2",
"alertTime" : "05 March 2019 06:13 PM"
}
```

## **Deposit webhook**

**Webhook event generated to signal that a deposit has been successfully processed in the merchant virtual account. The money in the account can be used to do payouts to various beneficiary accounts.**

### **Example**

```
{
"event" : "DEPOSIT_SUCCESS",
"msg" : "",
"transferId" : "3212312ds",
"referenceId" : "fdsfe",
"payoutMerchantId" : "1111111",
“amount” : 123;
}
```

## **Request processing failed**

**Webhook event generated to signal that a transfer request has failed processing.**

### **Example**

```
{
"event" : "REQUEST_PROCESSING_FAILED",
"msg" : "",
"payuRefId" : "3212312ds",
"merchantReferenceId" : "3212312ds"
}
```

## **Transfer success webhook**

**Webhook event generated to signal that a transfer has been successful.**

### **Example**

```
{
"event" : "TRANSFER_SUCCESS",
"msg" : "",
"payuRefId" : "3212312ds",
"merchantReferenceId" : "3212312ds",
"bankReferenceId" : "3212312ds"
}
```

## **Transfer failed webhook**

**Webhook event generated to signal that a transfer has failed.**

### **Example**

```
{
"event" : "TRANSFER_FAILED",
"msg" : "",
"payuRefId" : "3212312ds",
"merchantReferenceId" : "3212312ds",
"bankReferenceId" : "3212312ds",
"errorCode" : "23123"
}
```

## **Transfer Reversed webhook**

**Webhook event generated to signal that a transfer was successful but reversed after few days due to different reasons.**

### **Example**

```
{
"event" : "TRANSFER_REVERSED",
"msg" : "Transfer Reversed",
"payuRefId" : "3212312ds",
"merchantReferenceId" : "3212312ds",
"bankReferenceId" : "3212312ds",
}
```

## **Smart Send Detail Submitted**

**Webhook event generated to signal that a beneficiary has added their account details on the smart send link.**

### **Example**

```

{
"event" : " SMART_SEND_DETAIL_SUBMITTED",
"msg" : "Detail filled",
"linkId" : "3212312ds",
"merchantReferenceId" : "3212312ds",
"merchantMiscId" : "3212312ds"
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://payu-docs.gitbook.io/payouts-integration/webhooks/types-of-webhooks.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
