Skip to main content
POST
/
webhooks
/
{id}
/
deliveries
/
{deliveryId}
/
retry
Retry Delivery
curl --request POST \
  --url https://www.trysignalbase.com/api/v2/webhooks/{id}/deliveries/{deliveryId}/retry \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "delivery_id": "0a1b2c3d-4e5f-4061-8273-849506a1b2c3",
    "previous_delivery_id": "9c8b7a65-4d3e-4f21-8a0b-1c2d3e4f5a60",
    "status": "done",
    "response_status": 200,
    "attempt_count": 2,
    "success": true
  },
  "meta": {
    "endpoint": "webhooks.deliveries.retry",
    "creditsUsed": 1
  }
}

Authorizations

Authorization
string
header
required

Signalbase API key. Include as a Bearer token in the Authorization header.

Path Parameters

id
string
required

The webhook subscription ID.

deliveryId
string
required

ID of the delivery to retry (the id field from List Deliveries).

Response

The retry was attempted. success indicates whether the replay reached the endpoint with a 2xx.

success
boolean
required
data
object
required
meta
object
required