menu
Retry a webhook event
Re-queues a webhook delivery - typically a failed one - and returns the event with its refreshed status.
Endpoint
POST https://api.sendstreak.com/v2/accounts/{accountId}/webhook-events/{eventId}/retry
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
eventId | string |
Response
The re-queued webhook event.
{
"_id": "665f0a2b1c9d440012ab34cd",
"event": "message_bounced",
"status": "failed",
"createDate": "2026-07-07T09:30:00.000Z"
}
Errors
| Status | Description |
|---|---|
401 | Missing or invalid token, or the token is not authorized for this account/user. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request POST 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/webhook-events/YOUR_EVENT_ID/retry' \
--header 'Authorization: Bearer YOUR_API_TOKEN'