Retrieve metadata for a specific archive including its status, creation time, expiration, and file location. Does not return the archive contents themselves.
curl --request GET \
--url https://api.fluxer.app/v1/admin/archives/{subjectType}/{subjectId}/{archiveId} \
--header 'Authorization: <api-key>'{
"archive": {
"archive_id": "<string>",
"subject_type": "user",
"subject_id": "<string>",
"requested_by": "<string>",
"requested_at": "<string>",
"started_at": "<string>",
"completed_at": "<string>",
"failed_at": "<string>",
"file_size": "<string>",
"progress_percent": 123,
"progress_step": "<string>",
"error_message": "<string>",
"download_url_expires_at": "<string>",
"expires_at": "<string>"
}
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
The subjectType
The subjectId
The archiveId
Success
Show child attributes
curl --request GET \
--url https://api.fluxer.app/v1/admin/archives/{subjectType}/{subjectId}/{archiveId} \
--header 'Authorization: <api-key>'{
"archive": {
"archive_id": "<string>",
"subject_type": "user",
"subject_id": "<string>",
"requested_by": "<string>",
"requested_at": "<string>",
"started_at": "<string>",
"completed_at": "<string>",
"failed_at": "<string>",
"file_size": "<string>",
"progress_percent": 123,
"progress_step": "<string>",
"error_message": "<string>",
"download_url_expires_at": "<string>",
"expires_at": "<string>"
}
}