> ## Documentation Index
> Fetch the complete documentation index at: https://docs.get-exo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Job not found

> No such job exists for this caller.

This page is the resolution target of the RFC 9457 `type` URI on every `job_not_found` problem body: `https://docs.get-exo.com/errors/job_not_found`.

**HTTP status: `404` Not Found**.

```json theme={"theme":{"light":"github-light-default","dark":"github-dark-default"}}
{
  "type": "https://docs.get-exo.com/errors/job_not_found",
  "title": "Job not found",
  "status": 404,
  "detail": "No such job in this organization.",
  "code": "job_not_found",
  "requestId": "req_9f2c41ab7d0e5c18"
}
```

## Why it happens

Jobs are scoped to the caller. Another member's job id returns not found rather than forbidden, which keeps job ids unenumerable.

## How to fix it

* Use an id from `GET /v1/jobs` or from the 202 body of the call that queued the work.
* If the job belongs to a different member, that is the expected answer.

## Related

* [`job_not_cancelable`](/errors/job_not_cancelable)
* [`not_found`](/errors/not_found)
* [Errors](/platform/errors) for the envelope and the full catalogue
