Skip to main content
GET
/
v2
/
enterprise.export.detail
GetExport
curl --request GET \
  --url https://api.manus.im/v2/enterprise.export.detail \
  --header 'X-API-Key: <api-key>'
{
  "ok": true,
  "request_id": "<string>",
  "record": {
    "uid": "<string>",
    "user_id": "123e4567-e89b-12d3-a456-426614174000",
    "file_url": "<string>",
    "file_size": 123,
    "file_size_human": "<string>",
    "url_expires_at": "2023-11-07T05:31:56Z",
    "completed_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "error_message": "<string>"
  }
}
Questions or issues? Contact us at api-support@manus.ai.
Polling: Call this every few seconds after enterprise.export.create until record.status is EXPORT_STATUS_COMPLETED or EXPORT_STATUS_FAILED.Failures: When status is EXPORT_STATUS_FAILED, record.error_message describes the cause. EXPORT_STATUS_CANCELLED indicates the export was cancelled before completion.Completed records carry the URL: When record.status is EXPORT_STATUS_COMPLETED, record.file_url already contains a pre-signed download URL with record.url_expires_at. Call enterprise.export.downloadUrl only when that URL has expired.File retention: Completed exports are retained for 30 days; after that the underlying file is purged and enterprise.export.downloadUrl will fail.Protocols: Also callable via Connect RPC. See Protocols.

Authorizations

X-API-Key
string
header
required

Query Parameters

uid
string
required

Export task UID returned by enterprise.export.create.

Example:

"5YX76pz7Dga3yztNVw97Dh"

Response

Export task retrieved successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

record
object

Export task record with current status, file metadata, and download expiry.