Get Products Associated with Windows Patch

Specify the patch ID to fetch a list of products associated with a Windows patch.

GET/pm/v1/patchcatalog/patch/{patchId}/products

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data Type

Description

patchId

Mandatory

string

Specify the Patch ID to search.

Sample - Get the list of patches associated with a Windows patchSample - Get the list of patches associated with a Windows patch

API request

    
        curl -X GET
        "https://<QualysBaseURL>/pm/v1/patchcatalog/patch/12d8f363-7aa9-3c11-b07b-08b181dc24cf/products" -H "accept: application/json" -H "Authorization: Bearer <<jwt token>>"
    

Response

    
     [
    {
        "product": [
            "Windows Server 2008, Datacenter Edition",
            "Internet Explorer 7",
            "Windows Server 2008, Standard Edition",
            "Windows Server 2008, Web Edition",
            "Windows Server 2008, Enterprise Edition"
        ]
    }
]