Update a product
Updates the specified product by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
PATCH/v3/products/{id}
JWT
product:write
Parameters
| Name | Type | In | Description |
|---|---|---|---|
| id* | string | path | Unique identifier for the product. |
Request Body Schema
| Property | Type | Description | Constraints |
|---|---|---|---|
| name | string | Name of the product. | min: 1, max: 256 |
| displayName | string | Display name of the product, shown in the customer portal. | min: 1, max: 256 |
| description | string | Description for the product. | min: 1, max: 256 |
| licenseTemplateId | string | Unique identifier for the license template. | min: 1, max: 256 |
| trialPolicyId | string | Unique identifier for the trial policy. | min: 0, max: 256 |
| metadata | array | List of metdata key/value pairs. | items: object |
| key* | string | Name of the key. | min: 1, max: 256 |
| value* | string | Value of the key. | min: 0, max: 4096 |
| viewPermissions | array | Array of view permissions associated with the metadata. | items: string |
Request Example
Responses
200
400
401
403
404
429
500