---
title: "Update a product version"
method: PATCH
path: "/v3/product-versions/{id}"
tags: ["ProductVersions"]
deprecated: true
---

# Update a product version

`PATCH /v3/product-versions/{id}`

> **Deprecated.**

Updates the specified product version by setting the values of the parameters passed. Any parameters not provided will be left unchanged.

## Path parameters

- `id` string, required

## Request body

- ProductVersionUpdateRequestModel
  - `name` string, nullable — Name of the product version.
  - `displayName` string, nullable — Display name of the product version, shown in the customer portal.
  - `description` string, nullable — Description for the product version.
  - `featureFlags` ProductVersionFeatureFlagRequestModel[], nullable — List of feature flags.
    - `name` string, required — Name of the feature.
    - `enabled` boolean, required — Whether the feature is enabled.
    - `data` string, nullable — Optional data associated with the feature flag.

## Response `200`

OK

- ProductVersionDto
  - `id` string, required
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required
  - `name` string, required
  - `displayName` string, required
  - `description` string, required
  - `productId` string, required
  - `featureFlags` ProductVersionFeatureFlagDto[], required
    - `id` string, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
    - `name` string, required
    - `enabled` boolean, required
    - `data` string, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Server Error

---

[API](https://skmtc.net/cryptlex/apis/cryptlex-web-api.md) · [All operations](https://skmtc.net/cryptlex/apis/cryptlex-web-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cryptlex/cryptlex-web-api/revisions/ec1259c12475/schema)
