GetItDoneGetItDone Docs
Public APIError codes
Public APIError codes

A delivery for this event is already queued (delivery_already_pending)

What the GetItDone API problem code delivery_already_pending (HTTP 409) means, what causes it, and how to fix it.

What it means

A delivery for this webhook event is already queued or in flight, so a replay was not created.

Likely causes

  • A replay was requested for an event whose delivery is still pending.
  • A duplicate replay request raced the first.

How to fix

  • Wait for the pending delivery to finish, then check the delivery log before replaying.
  • Only replay deliveries that have reached a terminal (failed) state.

Example problem+json

{
    "type": "https://nowgetitdone.com/docs/api/problems/delivery-already-pending",
    "title": "A delivery for this event is already queued",
    "status": 409,
    "code": "delivery_already_pending",
    "request_id": "req_a1b2c3d4"
}

On this page