Skip to content

Commit

Permalink
[webhooks] add retry count option info
Browse files Browse the repository at this point in the history
  • Loading branch information
capcom6 committed Oct 9, 2024
1 parent 1fd046c commit d3472c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/features/webhooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Upon receiving an SMS, your device will make a POST request to the registered we

Your server should process this request and respond with an HTTP status code in the `2xx` range to indicate successful receipt in 30 seconds. If your server responds with any other status code, or if the device encounters network issues, the SMS Gateway app will attempt to resend the webhook.

The app implements an exponential backoff retry strategy: it will wait 10 seconds before the first retry, then 20 seconds, 40 seconds, and so on, doubling the interval each time. If after roughly 2 days the webhook has still not been successfully delivered, the app will cease retry attempts.
The app implements an exponential backoff retry strategy: it waits 10 seconds before the first retry, then 20 seconds, 40 seconds, and so on, doubling the interval each time. By default, the app will retry 14 times (approximately 2 days) before giving up. You can specify a custom retry count in the "Webhooks" section of the "Settings" tab.

### Step 6: Deregistering a Webhook

Expand Down

0 comments on commit d3472c3

Please sign in to comment.