ioZen Docs
POST
/webhooks/{id}/deliveries/{deliveryId}/redeliver

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication. Pass your ioZen API key as a Bearer token in the Authorization header.

In: header

Path Parameters

id*string

Webhook endpoint ID

deliveryId*string

Webhook delivery ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Empty JSON object. Content-Type: application/json is required.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://app.iozen.ai/api/v1/webhooks/cm7abc12x0001yz9k8mno3pqr/deliveries/cm7del01a0001yz9k8mno3pqr/redeliver" \  -H "Content-Type: application/json" \  -d '{}'
{
  "success": true,
  "data": {
    "success": true,
    "status_code": 200
  }
}
{
  "success": false,
  "error": {
    "code": "validation_failed",
    "message": "Validation failed",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "authentication_required",
    "message": "Missing or invalid API key",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "insufficient_scopes",
    "message": "API key lacks required scopes for this endpoint",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "resource_not_found",
    "message": "Resource not found",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "conflict",
    "message": "The referenced resource no longer exists and cannot be rebuilt"
  }
}
{
  "success": false,
  "error": {
    "code": "rate_limit_exceeded",
    "message": "Rate limit exceeded",
    "details": {}
  }
}
{
  "success": false,
  "error": {
    "code": "internal_error",
    "message": "An internal error occurred",
    "details": {}
  }
}