v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-214977372.7 KB
Digital Asset Management (DAM)
Managing folders

Copy folder

This will copy one folder into another. The selected folder, its nested folders, files, and their versions (in includeVersions is set to true) are copied in this operation. Note: If any file at the destination has the same name as the source file, then the source file and its versions will be appended to the destination file version history.

post/v1/bulkJobs/copyFolder

Request body

sourceFolderPathstring required

The full path to the source folder you want to copy.

destinationPathstring required

Full path to the destination folder where you want to copy the source folder into.

includeVersionsboolean

Option to copy all versions of files that are nested inside the selected folder. By default, only the current version of each file will be copied. When set to true, all versions of each file will be copied. Default value - false.

Example request

{
  "sourceFolderPath": "/path/of/source/folder",
  "destinationPath": "/path/of/destination/folder",
  "includeVersions": true
}

Response

jobIdstring required

Unique identifier of the bulk job. This can be used to check the status of the bulk job.