
Retry Conditions
The webhook request will retry up to 3 times if any of the following conditions occur:- The server returns an HTTP status that is not 200 (indicating failure)
- The server takes longer than 30 seconds to respond (timeout)
Retry Timing
If the first attempt fails, the webhook will automatically retry every 2 minutes.
After 3 failed attempts, the retry process will stop.
The purpose of this approach is to ensure the reliability and responsiveness of our webhook. By automatically retrying, we can increase the likelihood of successfully delivering messages or taking other actions by the webhook. It also helps in addressing potential issues that may arise, such as slow network connections or disruptions on the server side.