Skip to main content
POST
/
api
/
webhook-subscriptions
/
{id}
/
deliveries
/
{deliveryId}
/
retry
Retry Delivery
curl --request POST \
  --url https://app.replyify.ai/api/webhook-subscriptions/{id}/deliveries/{deliveryId}/retry \
  --header 'Authorization: Bearer <token>'
Re-sends the exact same payload to the subscription’s endpoint. A new delivery log entry is created for the retry.

Path Parameters

id
string
required
Webhook subscription ID
deliveryId
string
required
Original delivery ID to retry

Examples

curl -X POST "https://app.replyify.ai/api/webhook-subscriptions/sub_123/deliveries/del_456/retry" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response Example

{
  "success": true,
  "delivery": {
    "id": "uuid",
    "status_code": 200,
    "status": "delivered",
    "delivered_at": "2025-01-27T12:05:00Z",
    "created_at": "2025-01-27T12:05:00Z"
  }
}