Move multiple files or folders to different locations at once in the user's Dropbox.
Note that we do not currently support case-only renaming. This route will replace
[move_batch](api:dropbox-api:POST/2/files/move_batch). The main difference is this route will return status for each entry,
while [move_batch](api:dropbox-api:POST/2/files/move_batch) raises failure if any entry fails. This route will either finish
synchronously, or return a job ID and do the async move job in background. Please use
[move_batch/check:2](api:dropbox-api:POST/2/files/move_batch/check_v2) to check the job status.
**Required scope:** `files.content.write`
**Endpoint format:** [RPC](https://docs.dropboxapi.com/dropbox-api/docs/technical-reference/request-response-formats#rpc-endpoints)
**Authentication:** [User](https://docs.dropboxapi.com/dropbox-api/docs/auth-types#user-authentication), [Dropbox-API-Select-Admin (Team Admin)](https://docs.dropboxapi.com/dropbox-api/docs/auth-types#admin-authentication-via-dropbox-api-select-admin)
Request
This endpoint expects an object.
entrieslist of objectsRequired
List of entries to be moved or copied. Each entry is RelocationPath.
allow_ownership_transferbooleanOptionalDefaults to false
Allow moves by owner even if it would result in an ownership transfer
for the content being moved. This does not apply to copies.
autorenamebooleanOptional
If there's a conflict with any file, have the Dropbox server try to
autorename that file to avoid the conflict.