---
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. Letters (a-z, A-Z), numbers, underscores, hyphens, dots and spaces. Cannot start or end with a space.
  - `displayName` string, nullable — Display name of the product version, shown in the customer portal. Any printable characters, including letters from any script, punctuation and emoji. Cannot contain line breaks, tabs, other control characters, invisible formatting characters (zero-width and bidirectional marks), and cannot start or end with whitespace.
  - `description` string, nullable — Description for the product version. Any printable characters and line breaks. Cannot contain control characters other than tab, carriage return and line feed, nor invisible formatting characters (zero-width and bidirectional marks), and cannot start or end with whitespace.
  - `featureFlags` ProductVersionFeatureFlagRequestModel[], nullable — List of feature flags.
    - `name` string, required — Name of the feature. Letters (a-z, A-Z), numbers, underscores and hyphens.
    - `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/66dcb6293180/schema)
