# Bulk transition asset lifecycle Transitions multiple assets to a different lifecycle state in a single operation. Endpoint: PATCH /v1/assets/bulk/actions/lifecycle Version: 1.0.0 Security: Bearer ## Request fields (application/json): - `transition` (string, required) Lifecycle transition to apply to all specified assets. Enum: "remove", "restore", "publish", "unpublish", "archive", "unarchive" - `uuids` (array, required) List of asset identifiers to transition. ## Response 200 fields (application/json): - `uuid` (string, required) Unique identifier for this asset. - `createdAt` (string, required) Timestamp when this asset was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when this asset was last modified. Example: "2025-11-23T14:15:22.123456Z" - `removedAt` (string,null) Timestamp when this asset was removed. Null if not removed. Example: "2025-11-23T14:15:22.123456Z" - `archivedAt` (string,null) Timestamp when this asset was archived. Null if not archived. Example: "2025-11-23T14:15:22.123456Z" - `status` (string, required) Current lifecycle status of this asset. Enum: "draft", "published", "unpublished", "archived", "removed" - `category` (string, required) Category classification for this asset. Enum: "image", "video", "audio", "document", "design", "archive", "data" - `storageLocation` (string, required) Storage backend where associated files reside. Enum: "s3" - `name` (string,null) Display name for this asset. - `description` (string,null) Optional detailed description for this asset. - `altText` (string,null) Alternative text for accessibility and SEO purposes. ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 422 fields (application/problem+json): - `errors` (array) - `errors.code` (string, required) - `errors.message` (string, required) - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)