Batch-move files within a container
curl --request POST \
--url https://api.kazzle.app/api/spaces/{spaceId}/drive/fs/move \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"containerId": "<string>",
"items": [
{
"oldPath": "<string>",
"newPath": "<string>"
}
]
}
'curl --request POST \
--url https://api.kazzle.app/api/spaces/{spaceId}/drive/fs/move \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"containerId": "<string>",
"items": [
{
"oldPath": "<string>",
"newPath": "<string>"
}
]
}
'