Skip to content

A Stormedo request is the durable unit of work for one outbound HTTP call. It keeps a stable public ID, target definition, timing, retry policy, status, and attempt history.

Stormedo returns 202 Accepted after storing the request for durable delivery. The destination does not need to respond before your application can continue.

The request can then wait for its delivery time, run one or more attempts, and reach a final status independently from the publisher process.

Status Meaning
queued Accepted and ready for immediate execution.
scheduled Accepted and waiting for delay or deliver_at.
delivering An outbound attempt is in progress.
succeeded The destination returned a successful response.
failed Delivery reached a final non-success outcome.
cancelled Cancellation completed before a final delivery outcome.

succeeded, failed, and cancelled are final statuses.

An attempt is one outbound HTTP call. Every completed attempt records timing, response or transport outcome, retryability, retry reason, and the next retry time when another attempt is scheduled.

The stable request ID is sent on every attempt in the Stormedo-Request-Id header.

Request list, detail, and attempt APIs can take a short time to show a newly accepted request. The 202 Accepted response confirms that Stormedo accepted it for delivery.

Cancellation is an action, not deletion. A cancelled request and its completed attempt history remain available for inspection.

Cancellation can fail with 409 Conflict when the request has already reached a final outcome.

Replay does not mutate the original request. It creates a new request with a new ID and records the original request in replayed_from_request_id.

This preserves the complete operational history of both executions.

A destination can accept an attempt before Stormedo records the response. If the execution is interrupted during that window, the same request can be attempted again.

Once this lifecycle is familiar, continue with the advanced Idempotency guide to make repeated delivery safe for business operations.