# `JOB_ALREADY_FINISHED` (HTTP 409): the bulk job cannot be cancelled any more

A cancel was requested for a bulk job that already reached a terminal status: completed, cancelled, or failed.

Cancellation only makes sense while a job is queued or running. A finished job keeps its counters and its results; nothing about it changes.

**What to do.** Nothing to do. Download the results if the job completed, or create a new job.

```json
{
    "success": false,
    "error": {
        "code": "JOB_ALREADY_FINISHED",
        "message": "The job has already finished and cannot be cancelled.",
        "request_id": "req_01m1kgdm4xngzmbmff68g94w0c"
    }
}
```

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