pub fn delete_batch<'a>(
client: &'a impl UserAuthClient,
arg: &'a DeleteBatchArg,
) -> impl Future<Output = Result<DeleteBatchLaunch, Error<NoError>>> + Send + 'a
Available on crate features
async_routes
and dbx_files
only.Expand description
Delete multiple files/folders at once. This route is asynchronous, which returns a job ID
immediately and runs the delete batch asynchronously. Use
delete_batch_check()
to check the job status.