curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/storage/files/batch-download \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file_ids": [
"<string>"
],
"archive_name": "files.zip"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Download multiple files as a ZIP archive.
curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/storage/files/batch-download \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file_ids": [
"<string>"
],
"archive_name": "files.zip"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?