curl --request POST \
--url https://api.dnsradar.dev/webhooks/{webhook_id}/requests/{request_id}/retry \
--header 'X-Api-Key: <api-key>'{
"id": "req_abc123...",
"webhook_id": "whk_abc123...",
"event_id": "evt_abc123...",
"created": "2023-11-07T05:31:56Z",
"status": "PENDING",
"retries": 0,
"delivered": "2023-11-07T05:31:56Z",
"status_code": 200,
"response_body": "accepted",
"last_attempt": "2023-11-07T05:31:56Z"
}Retry a failed webhook request delivery.
curl --request POST \
--url https://api.dnsradar.dev/webhooks/{webhook_id}/requests/{request_id}/retry \
--header 'X-Api-Key: <api-key>'{
"id": "req_abc123...",
"webhook_id": "whk_abc123...",
"event_id": "evt_abc123...",
"created": "2023-11-07T05:31:56Z",
"status": "PENDING",
"retries": 0,
"delivered": "2023-11-07T05:31:56Z",
"status_code": 200,
"response_body": "accepted",
"last_attempt": "2023-11-07T05:31:56Z"
}API key used to authenticate yourself on DNSRadar. Obtain your API key from your DNSRadar dashboard.
Webhook UUID (starts with 'whk_')
Request UUID (starts with 'req_')
Request retried successfully
Record of a webhook execution
Request identifier with 'req_' prefix
"req_abc123..."
UUID of the associated webhook
"whk_abc123..."
UUID of the associated event
"evt_abc123..."
Datetime when the webhook request was created in ISO 8601 format
Current status of the webhook request
PENDING, DELIVERED, RETRYING, FAILED Number of retry attempts made
0
Datetime when the webhook was successfully delivered in ISO 8601 format
HTTP status code from the last delivery attempt
200
Response body from the last delivery attempt (truncated to 4000 chars)
"accepted"
Datetime when the webhook was sent for the last time, in ISO 8601 format