v8

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

Bulk job status

This API returns the status of a bulk job like copy and move folder operations.

get/v1/bulkJobs/{jobId}

Path parameters

jobIdstring required

The jobId is returned in the response of bulk job API e.g. copy folder or move folder API.

Response

On success, you will receive the status of the bulk job in the response body.

jobIdstring

Unique identifier of the bulk job.

type'COPY_FOLDER' | 'MOVE_FOLDER' | 'RENAME_FOLDER'

Type of the bulk job.

status'Pending' | 'Completed'

Status of the bulk job.

purgeRequestIdstring

Unique identifier of the purge request. This will be present only if purgeCache is set to true in the rename folder API request.

Example response

{
  "jobId": "5d5b1a9b4c8c4c0001f3e4a2",
  "type": "COPY_FOLDER",
  "status": "Completed"
}