# Update asset Updates an existing asset. Only provided fields are updated. Endpoint: PATCH /v1/assets/{assetUuid} Version: 1.0.0 Security: Bearer ## Path parameters: - `assetUuid` (string, required) Unique identifier of the asset. ## Request fields (application/json): - `name` (string,null) Updated display name for the asset. - `description` (string,null) Updated detailed description for the asset. - `altText` (string,null) Updated alternative text for the asset. ## 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 404 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 409 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)