Overview

Call this endpoint as a GET request to retry processing of failed webhook events using the URL that is provided below.

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"
}