Skip to main content
POST
/
dataexport.v1.EnterpriseDataExportService
/
GetExport
GetExport
curl --request POST \
  --url https://api.manus.im/dataexport.v1.EnterpriseDataExportService/GetExport \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "uid": "5YX76pz7Dga3yztNVw97Dh"
}
'
{
  "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>"
  },
  "request_id": "<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.

Authorizations

X-API-Key
string
header
required

Body

application/json
uid
string
required

Export task UID returned by enterprise.export.create.

Example:

"5YX76pz7Dga3yztNVw97Dh"

Response

Export task retrieved successfully.

record
object

Export task record.

request_id
string

Request ID for tracing and auditing.