Product Level Group
An agent can use a product level group to deploy a particular set of product levels. A product level might be a particular version of Windows 10 or it might be a service pack for another product or Windows operating system.
Base URL
        https://<consoleFQDN:port>/st/console/api/v1.0/patch/productlevelgroups
                                        Supported Requests
| Method | URL | Input | Return | 
|---|---|---|---|
| GET | https://<consoleFQDN:port>/st/console/api/v1.0/patch/productlevelgroups | ||
| https://<consoleFQDN:port>/st/console/api/v1.0/patch/productlevelgroups/{productlevelgroup ID} | |||
| https://<consoleFQDN:port>/st/console/api/v1.0/patch/productlevelgroups/{productlevelgroup ID}/usedby | 
Input Model
 URL Parameters
URL Parameters
                                            | Name | Type | Description | 
|---|---|---|
| createdByMe | Boolean | Returns only those items created by the user. This parameter will be removed in a future release and should only be used in legacy requests. | 
Example with Sample Response
Find all product level groups
GET Request
https://<consoleFQDN:port>/st/console/api/v1.0/patch/productlevelgroups
Sample Response
{
    "count": 1,
    "value": [
        {
            "id": 1,
            "links": {
                "self": {
                    "href": "https://device-name.example.com:3121/st/console/api/v1.0/patch/productlevelgroups/1"
                },
                "usedby": {
                    "href": "https://device-name.example.com:3121/st/console/api/v1.0/patch/productlevelgroups/1/usedby"
                }
            },
            "name": "Sample-Prod-Level-Grp"
        }
    ]
}Other Request Examples
 Find the product level group with ID 1
Find the product level group with ID 1
                                            GET Request
https://<consoleFQDN:port>/st/console/api/v1.0/productlevelgroups/1
 Find all entities that are using the product level group with ID 1
Find all entities that are using the product level group with ID 1
                                            GET Request
https://<consoleFQDN:port>/st/console/api/v1.0/productlevelgroups/1/usedby
Output Models
 ProductLevelGroups
ProductLevelGroups
                                            | Name | Type | Description | 
|---|---|---|
| id | Int32 | The product level group ID. | 
| links | Links | Shows the related URLs for the product level group. | 
| name | String | The name of the product level group. | 
 ProduceLevelGroupsUsedBy
ProduceLevelGroupsUsedBy
                                            | Name | Type | Description | 
|---|---|---|
| name | String | The name of the policy that is using the product level group. | 
| usageType | Enum | The type of component using the product level group. |