Fetch Custom Patch Download URLs

Using this API, you can fetch the Internal Repository Server URLs configured from the Configuration > Setup tab using the Download Patches from the Internal Repository setting from the Patch Management UI. For more information, see Subscription Level Settings for Patch Management.

GET/pm/v1/configurationDetails/customPatchDownloadUrls

Sample - Get the Patch Management application versionSample - Get the Patch Management application version

API request

    
curl -X 'GET' \
'<qualys_base_url>/pm/v1/configurationDetails/customPatchDownloadUrls' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <Bearer_Token>' \
    

Response

    
[
  {
    "id": 1001,
    "name": "number3",
    "url": "https://123.com"
  },
  {
    "id": 1002,
    "name": "Number4",
    "url": "http://www.google.com"
  },
  {
    "id": 20,
    "name": "number1",
    "url": "https://www.google.com"
  },
  {
    "id": 21,
    "name": "number2",
    "url": "http://dsfkje.com"
  }
]