Move a file/folder across containers
curl --request POST \
--url https://api.kazzle.app/api/spaces/{spaceId}/drive/ops/move \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sourceContainerId": "<string>",
"sourcePath": "<string>",
"targetContainerId": "<string>",
"targetPath": "<string>"
}
'Better Auth JWT token
curl --request POST \
--url https://api.kazzle.app/api/spaces/{spaceId}/drive/ops/move \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sourceContainerId": "<string>",
"sourcePath": "<string>",
"targetContainerId": "<string>",
"targetPath": "<string>"
}
'