Skip to main content
POST
/
webhook-deliveries
/
{id}
/
retry
cURL
curl -X POST https://api.neuraldraft.io/v1/webhook-deliveries/whd_2Nh5XyZAbCdE/retry \
  -H "Authorization: Bearer ndsk_live_yourkey"
{
  "id": "whd_2Nh4PqRsTuVw",
  "endpoint_id": "whe_2NgcaXxFqLPo",
  "event": "blog_post.published",
  "status": "success",
  "attempts": 2,
  "created_at": "2023-11-07T05:31:56Z",
  "response_status": 123,
  "response_body": "<string>",
  "next_retry_at": "2023-11-07T05:31:56Z",
  "delivered_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.neuraldraft.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Project API key. Pass as Authorization: Bearer ndsk_live_.... Manage keys via /projects/me/api-keys. Test-mode keys use the ndsk_test_ prefix.

Path Parameters

id
string
required

Response

Retry queued.

id
string
required
Example:

"whd_2Nh4PqRsTuVw"

endpoint_id
string
required
Example:

"whe_2NgcaXxFqLPo"

event
enum<string>
required

All webhook event topics emitted by the platform.

Available options:
blog_post.published,
blog_post.translated,
social_post.published,
social_post.failed,
order.created,
order.paid,
order.fulfilled,
order.cancelled,
order.refunded,
booking.confirmed,
booking.cancelled,
booking.completed,
content.changed,
image.generated,
connect.account_updated
status
enum<string>
required
Available options:
success,
failed,
pending
attempts
integer
required
Required range: x >= 1
created_at
string<date-time>
required
response_status
integer | null

HTTP status returned by the receiving server, if any.

response_body
string | null

First 1KB of the response body, for debugging.

next_retry_at
string<date-time> | null
delivered_at
string<date-time> | null