Re-queue a webhook delivery for immediate retry
POST
/v1/webhook-endpoints/{id}/deliveries/{deliveryId}/retry
const url = 'https://your-notavia-host/v1/webhook-endpoints/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/deliveries/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/retry';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://your-notavia-host/v1/webhook-endpoints/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/deliveries/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/retry \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
deliveryId
required
string format: uuid
Responses
Section titled “ Responses ”Delivery re-queued.
Media type application/json
object
id
string format: uuid
endpoint_id
string format: uuid
event_type
The event this delivery carries: notification.sent, notification.delivered, notification.bounced, notification.complained, notification.failed, or — on Pro and above — provider.critical / provider.recovered when one of your email providers starts failing your sends, or recovers. Deliberately an open string, not an enum — new event types are added over time and must not break a generated client.
string
status
string
http_status_code
integer
response_snippet
string
latency_ms
integer
attempt_count
integer
next_attempt_at
string format: date-time
created_at
string format: date-time
Example
{ "event_type": "provider.critical", "status": "pending"}Missing or invalid credentials.
Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
Example generated
{ "error": { "type": "example", "code": "example", "message": "example", "param": "example" }}Credentials do not have the required scope.
Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
Example generated
{ "error": { "type": "example", "code": "example", "message": "example", "param": "example" }}Resource not found.
Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
Example generated
{ "error": { "type": "example", "code": "example", "message": "example", "param": "example" }}