Retrieve a product version

Retrieves the details of an existing product version.

GET/v3/product-versions/{id}
JWT
productVersion:read

Parameters

NameTypeInDescription
id*stringpathUnique identifier for the product version.

Responses

200 OK
{
  "id": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "name": "string",
  "displayName": "string",
  "description": "string",
  "productId": "string",
  "featureFlags": [
    {
      "id": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "name": "string",
      "enabled": true,
      "data": "string"
    }
  ]
}