Webhooks allow you to build or set up integrations, which subscribe to certain events. When one of those events is triggered, we'll send a HTTP POST payload to the webhook's configured URL.
If automated disbursals are enabled, the following web hook can be sent after disbursal has taken place.
{
"entity": "disbursal",
"payload": {
"status": "<loan disbursal status>",
"amount": "<loan amount>",
"transaction_date": "23-Sep-2021",
"transaction_id": "<transaction id>",
"closure_reason": "<if the loan is closed, and a reason is available it is returned here else null>",
"nach_umrn": "<NACH UMRN of the loan, if it is available>"
},
"event": "disbursal.status_update",
"id": "<webhook id>",
"created_at": "2021-09-24T19:03:51.565955+05:30"
}
For the above to be configured, please let us know the endpoint along with Authorisation if any.