Resets the delivery to pending and schedules it for the next worker
tick. The same event id is reused so consumers can dedupe with their
existing idempotency store.
curl --request POST \
--url https://api.callingbox.io/v1/webhook_deliveries/{id}/redeliver \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"endpoint_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"event_type": "call.queued",
"url": "<string>",
"status": "pending",
"attempt_count": 123,
"manual_retry_count": 123,
"next_attempt_at": "2023-11-07T05:31:56Z",
"last_error": "<string>",
"last_response_status": 123,
"delivered_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}API key starting with sk_
Delivery re-queued
Event id. Sent in the CallingBox-Event-Id header; use it as an idempotency key.
The endpoint this delivery targets. null means this is an
inline delivery from the webhook_url on a call (signed with
the org's default secret).
Lifecycle event types CallingBox emits. Use * in
enabled_events to subscribe an endpoint to every event.
call.queued, call.ringing, call.answered, call.completed, call.failed, call.no_answer, call.busy, call.canceled pending, delivered, exhausted Number of times the delivery was manually replayed.
HTTP status code from the most recent attempt.
curl --request POST \
--url https://api.callingbox.io/v1/webhook_deliveries/{id}/redeliver \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"endpoint_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"event_type": "call.queued",
"url": "<string>",
"status": "pending",
"attempt_count": 123,
"manual_retry_count": 123,
"next_attempt_at": "2023-11-07T05:31:56Z",
"last_error": "<string>",
"last_response_status": 123,
"delivered_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}