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

# Overview

> Export user data from Manus for compliance, legal hold, and internal audits

<sup>Questions or issues? Contact us at [api-support@manus.ai](mailto:api-support@manus.ai).</sup>

# Enterprise Data Export

Lets enterprise administrators export user data from Manus for **compliance**, **legal hold**, and **internal audit** workflows. Exports run asynchronously and produce a ZIP archive of structured JSON plus optional file attachments.

## Endpoints

<CardGroup cols={2}>
  <Card title="Create an export" icon="download" href="/enterprise/v2/enterprise.export.create">
    Kick off a new compliance export with configurable scope and time range
  </Card>

  <Card title="Track export status" icon="hourglass" href="/enterprise/v2/enterprise.export.detail">
    Poll an export task until it reaches `EXPORT_STATUS_COMPLETED`
  </Card>

  <Card title="List past exports" icon="list" href="/enterprise/v2/enterprise.export.list">
    Retrieve export history for a user with pagination
  </Card>

  <Card title="Get a download URL" icon="link" href="/enterprise/v2/enterprise.export.downloadUrl">
    Mint a 10-minute pre-signed URL for the completed archive
  </Card>

  <Card title="Preview user tasks" icon="eye" href="/enterprise/v2/enterprise.task.list">
    List a user's tasks before deciding what to export
  </Card>
</CardGroup>

## Export lifecycle

```
PENDING → PROCESSING → COMPLETED
                   ↘
                     FAILED / CANCELLED
```

1. [enterprise.export.create](/enterprise/v2/enterprise.export.create) returns immediately with `EXPORT_STATUS_PENDING`.
2. [enterprise.export.detail](/enterprise/v2/enterprise.export.detail) reports `PROCESSING`, then `COMPLETED` (or `FAILED` / `CANCELLED`). Completed records carry `file_url` and `url_expires_at`.
3. [enterprise.export.downloadUrl](/enterprise/v2/enterprise.export.downloadUrl) mints a fresh 10-minute pre-signed URL when the embedded one has expired.

## Operational notes

* **User scope:** You can export data for any user who is currently or was previously a member of your enterprise, including deleted accounts.
* **File retention:** Export archives are retained for **30 days** after completion.
* **Download URL validity:** Pre-signed URLs expire after **10 minutes**; mint a new one if needed.
* **Concurrency:** Recommended to keep at most one in-flight export per user.
* **Audit logging:** All export operations are logged with the supplied `reason` for compliance review.
