Overview
Call this endpoint as a GET request to retry processing of failed webhook events using the URL that is provided below.
NOTE: The platform will automatically retry webhooks when it fails to post data to a webhook’s configured endpoint. Currently, the platform will retry in five-minute intervals over a 3-day period.
If the platform is still unable to post data to a webhook’s configured endpoint after this retry period ends, this endpoint can be called to retry any webhooks that have failed processing for the past 7 days.
Endpoint
| Method | URL |
|---|---|
| GET | https://{{your_url}}/api/2.0/production/sms/webhooks/failed/reprocess |
Responses
| Status Code | Explanation |
|---|---|
| 200 |
Request was successful, failed events found and queued for processing |
| 404 |
Failed events to reprocess not found |
| 500 |
Internal server error |
200
{
"data": {
"reprocess": true,
"message": "Webhooks queued for retry"
}
}
404
{
"data": {
"reprocess": false,
"message": "No webhooks found"
}
}
500
{
"status": "error",
"data": "Error message"
}