Webhook Retry Mechanism
A webhook call is considered successful when the API endpoint at your end responds with a Status 200 OK response.
If API endpoint responds with non-200 response or fails to respond within s5 timeout, then webhook is considered as failed. A failed webhook will be retries 8 times with exponential backoff of 60s as per the table shown below
Retry Run
Seconds after event
0
0
1
60
2
180
3
420
4
900
5
1860
6
3780
7
7620
8
15300
Last updated