Skip to main content
POST
/
dataexport.v1.EnterpriseDataExportService
/
ListExports
ListExports
curl --request POST \
  --url https://api.manus.im/dataexport.v1.EnterpriseDataExportService/ListExports \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "user": "user@example.com",
  "page": 1,
  "page_size": 10
}
'
{
  "records": [
    {
      "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>"
    }
  ],
  "total": 123,
  "request_id": "<string>"
}
Questions or issues? Contact us at api-support@manus.ai.
User identifier: user accepts either a user ID or an email address.Pagination: Page-based — page starts at 1. All three fields (user, page, page_size) are required.

Authorizations

X-API-Key
string
header
required

Body

application/json
user
string
required

User ID or email address.

Example:

"user@example.com"

page
integer<int32>
required

Page number, starting from 1.

Example:

1

page_size
integer<int32>
required

Number of records per page.

Example:

10

Response

Export records retrieved successfully.

records
object[]

List of export records.

total
integer<int32>

Total number of records matching the query.

request_id
string

Request ID for tracing and auditing.