Overview
Introduction
Webhooks play a vital role in managing background transactions by providing real-time alerts for updates on transaction statuses. With Wello Ramp, your application can receive notifications whenever there’s an activity on your account. This functionality is particularly useful for keeping track of changes like transaction status updates that occur independently of direct API calls.
Notifications are sent as HTTP POST requests to the endpoint URLs that you define in the webhookURL POST request.
Provide us your Webhook URL
You can provide us the URL to receive webhook notifications through Webook API. If you want to change the URL, you can still use the same endpoint to tell us the latest URL you’d like to get notifications on order updates.
The response indicating you have successfully configured the Webhook URL:
{
"code": "SYS_SUCCESS",
"message": null,
"messageDetail": null,
"data": {
"webhookUrl": "<Your Webhook URL passed to us>"
},
"success": true
}
Updated 5 months ago