# `JOB_NOT_FINISHED` (HTTP 409): the bulk run has not finished, so there is no completion webhook to send

A redelivery of the completion webhook was asked for a run that is still queued or running.

The completion webhook announces a finished run, so it exists only once the run has settled at completed, failed or cancelled. Until then there is nothing to send again — and sending the run's counts mid-flight would announce a finish that has not happened.

Nothing is delivered and nothing is charged.

**What to do.** Poll the run (`GET /api/v1/email/bulk/{jobId}` and its phone, IP, address and consistency twins) until `status` is terminal, then ask for the redelivery. If the run is still going, the first delivery has not been missed yet: it has not been made.

```json
{
    "success": false,
    "error": {
        "code": "JOB_NOT_FINISHED",
        "message": "The run has not finished yet, so there is no completion webhook to send again.",
        "request_id": "req_01m1kgdm4xngzmbmff68g94w0c"
    }
}
```

Reference: https://spaw.co/docs/errors/JOB_NOT_FINISHED
