Get the Sharding Key of Data Export Task

Last Updated on : 2026-05-15 09:31:03Copy for LLMView as MarkdownDownload PDF

Used to get the keys corresponding to the download addresses of multiple shards in data export.

API address

GET: /v2.0/cloud/agent/chat/oem/data-export/tasks/{task_id}/secret

Request parameter

Parameter nameTypeINRequiredDescription
task_idStringpathtrueThe task ID.

Return parameter

Parameter nameTypeDescription
resultListThe returned result.

Description of result

Parameter nameTypeDescription
file_nameStringThe file name.
secretStringThe decompression password.

Request example

GET: /v2.0/cloud/agent/chat/oem/data-export/tasks/*****/secret

Return example

{
    "result": [
        {
            "file_name": "file_name1",
            "secret": "X32s1u6uPKxD/2GMifXqdjGOlg*****hikjSsCf6LSYNNTXYcmtBw=="
        },
        {
            "file_name": "file_name2",
            "secret": "7k9s8G2pR5dX/4JFmzQ7nYb3vH*****aL6sKf2gM9PQUVRT8hgdd"
        }
    ],
    "t": 1634713288140,
    "success": true
}

Error code

For more information, see error code.