Delete a product version

Permanently deletes a product version. It cannot be undone.

DELETE/v3/product-versions/{id}
JWT
productVersion:write

Parameters

NameTypeInDescription
id*stringpathUnique identifier for the product version.
Triggers webhook: productVersion.deleted
POST <your-webhook-url>
{
  "event": "productVersion.deleted",
  "data": {
    "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"
      }
    ]
  },
  "triggeredAt": "string"
}

Responses

204 No Content