Replay deliveries in bulk (DLQ)
package main
import ( "fmt" "strings" "net/http" "io")
func main() {
url := "https://api.kirimdev.com/v1/webhook_deliveries/bulk_replay"
payload := strings.NewReader("{ \"subscription_id\": \"example\", \"status\": \"failed\", \"event_type\": \"example\", \"created_after\": \"2026-04-15T12:00:00Z\", \"created_before\": \"2026-04-15T12:00:00Z\" }")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "order-20260910-0001") req.Header.Add("Authorization", "Bearer <token>") req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close() body, _ := io.ReadAll(res.Body)
fmt.Println(res) fmt.Println(string(body))
}const url = 'https://api.kirimdev.com/v1/webhook_deliveries/bulk_replay';const options = { method: 'POST', headers: { 'Idempotency-Key': 'order-20260910-0001', Authorization: 'Bearer <token>', 'Content-Type': 'application/json' }, body: '{"subscription_id":"example","status":"failed","event_type":"example","created_after":"2026-04-15T12:00:00Z","created_before":"2026-04-15T12:00:00Z"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}use serde_json::json;use reqwest;
#[tokio::main]pub async fn main() { let url = "https://api.kirimdev.com/v1/webhook_deliveries/bulk_replay";
let payload = json!({ "subscription_id": "example", "status": "failed", "event_type": "example", "created_after": "2026-04-15T12:00:00Z", "created_before": "2026-04-15T12:00:00Z" });
let mut headers = reqwest::header::HeaderMap::new(); headers.insert("Idempotency-Key", "order-20260910-0001".parse().unwrap()); headers.insert("Authorization", "Bearer <token>".parse().unwrap()); headers.insert("Content-Type", "application/json".parse().unwrap());
let client = reqwest::Client::new(); let response = client.post(url) .headers(headers) .json(&payload) .send() .await;
let results = response.unwrap() .json::<serde_json::Value>() .await .unwrap();
dbg!(results);}curl --request POST \ --url https://api.kirimdev.com/v1/webhook_deliveries/bulk_replay \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'Idempotency-Key: order-20260910-0001' \ --data '{ "subscription_id": "example", "status": "failed", "event_type": "example", "created_after": "2026-04-15T12:00:00Z", "created_before": "2026-04-15T12:00:00Z" }'Replay every delivery for a subscription matching the filter, capped at 1000 per request. Paginate via created_after / created_before for larger backfills.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters ”Optional retry key. Reusing the same key with the same method, path, and body within 24 hours returns the original response; reusing it for a different request returns 422.
Example
order-20260910-0001Optional retry key. Reusing the same key with the same method, path, and body within 24 hours returns the original response; reusing it for a different request returns 422.
Request Body
Section titled “Request Body ”object
Responses
Section titled “ Responses ”Bulk replay enqueued
object
The requested resource.
object
Unique request identifier to include when contacting support.
Example
{ "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX"}Validation failure
object
object
Human-readable explanation of the error.
Request field associated with the error, when applicable.
Unique request identifier to include when contacting support.
Examples
A field value is invalid.
{ "error": { "type": "invalid_request_error", "code": "invalid_field_value", "message": "A field value is invalid.", "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX" }}Authentication failure
object
object
Human-readable explanation of the error.
Request field associated with the error, when applicable.
Unique request identifier to include when contacting support.
Examples
The provided API key is invalid.
{ "error": { "type": "authentication_error", "code": "invalid_api_key", "message": "The provided API key is invalid.", "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX" }}Resource not found
object
object
Human-readable explanation of the error.
Request field associated with the error, when applicable.
Unique request identifier to include when contacting support.
Examples
Resource not found.
{ "error": { "type": "not_found", "code": "resource_not_found", "message": "Resource not found.", "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX" }}Conflict (e.g. template already exists, webhook subscription disabled, setup link inactive)
object
object
Human-readable explanation of the error.
Request field associated with the error, when applicable.
Unique request identifier to include when contacting support.
Examples
An identical request is still being processed. Retry later.
{ "error": { "type": "conflict", "code": "idempotency_in_progress", "message": "An identical request is still being processed. Retry later.", "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX" }}Semantic failure (e.g. idempotency key reuse, pre-send compliance guard, media not found)
object
object
Human-readable explanation of the error.
Request field associated with the error, when applicable.
Unique request identifier to include when contacting support.
Examples
Idempotency-Key was reused with a different request body.
{ "error": { "type": "invalid_request_error", "code": "idempotency_key_reuse", "message": "Idempotency-Key was reused with a different request body.", "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX" }}Rate limit exceeded
object
object
Human-readable explanation of the error.
Request field associated with the error, when applicable.
Unique request identifier to include when contacting support.
Examples
Rate limit exceeded.
{ "error": { "type": "rate_limit_error", "code": "rate_limit_exceeded", "message": "Rate limit exceeded.", "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX" }}Internal server error
object
object
Human-readable explanation of the error.
Request field associated with the error, when applicable.
Unique request identifier to include when contacting support.
Examples
An unexpected error occurred.
{ "error": { "type": "api_error", "code": "internal_error", "message": "An unexpected error occurred.", "request_id": "req_01HXYZABCDEFGHJKMNPQRSTVWX" }}