> ## 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.

# Export not found

> No such export exists in this organization.

This page is the resolution target of the RFC 9457 `type` URI on every `export_not_found` problem body: `https://docs.get-exo.com/errors/export_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/export_not_found",
  "title": "Export not found",
  "status": 404,
  "detail": "No such export in this organization.",
  "code": "export_not_found",
  "requestId": "req_9f2c41ab7d0e5c18"
}
```

## Why it happens

Exports are scoped to the organization and, for subject-scoped exports, to the subject that created them.

Export documents are also deleted when their subject is erased, so an id from before an erasure will not resolve.

## How to fix it

* List exports with `GET /v1/exports` and use an id from there.
* Create a fresh export with `POST /v1/exports` if the old one is gone.

## Related

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