# Bulk transition SKU lifecycle Transitions multiple SKUs to a different lifecycle state in a single operation. Endpoint: PATCH /v1/skus/bulk/actions/lifecycle Version: 1.0.0 Security: Bearer ## Request fields (application/json): - `transition` (string, required) Lifecycle transition to apply to all specified SKUs. Enum: "remove", "restore", "publish", "unpublish" - `uuids` (array, required) List of SKU identifiers to transition. ## Response 200 fields (application/json): - `uuid` (string, required) Unique identifier for this SKU. - `createdAt` (string, required) Timestamp when this SKU was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when this SKU was last modified. Example: "2025-11-23T14:15:22.123456Z" - `removedAt` (string,null) Timestamp when this SKU was removed. Null if not removed. Example: "2025-11-23T14:15:22.123456Z" - `status` (string, required) Current lifecycle status of this SKU. Enum: "draft", "published", "unpublished", "removed" - `code` (string, required) Unique code identifying this SKU. ## 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)