Retrieve All Downloaded Patches Deprecating soon

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Retrieve the details of all downloaded patches.

This API endpoint is deprecating soon

Request URL

https://{server-hostname}:8383/api/1.4/patch/downloadedpatches

Scope

PatchMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/api/1.4/patch/downloadedpatches \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
message_typestring

Value: downloadedpatches

message_responseJSON Object

Paginated downloaded patches data

Show Sub-Attributes
totalstring

Total number of downloaded patches

limitstring

Records per page

pagestring

Current page number

downloadedpatchesJSON Array

Array of downloaded patch objects

Show Sub-Attributes
JSON Object
Show Sub-Attributes
patch_idlong

Unique patch identifier

bulletin_idstring

Security bulletin identifier

patch_namestring

Patch filename

patch_descriptionstring

Patch description

platform_namestring

Platform: Windows, Mac, or Linux

patch_typestring

Patch type code

patch_released_timelong

Patch release timestamp

patch_sizelong

Patch file size in bytes

download_statusstring

Download status: 221=Downloaded

download_timelong

Timestamp when patch was downloaded

superceded_bystring

Superseding patch ID, or NA

message_versionstring

API version: 1.4

statusstring

Operation status: success

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Paginated list of downloaded patches

Copied!
  {
    "message_type": "downloadedpatches",
    "message_response": {
      "total": 2,
      "limit": 25,
      "page": 1,
      "downloadedpatches": [
        {
          "patch_released_time": 1755541800000,
          "patch_size": 28887288,
          "download_time": 1757340476320,
          "patch_id": 1419469,
          "patch_name": "sp162871.exe",
          "patch_description": "HP Firmware update - 8D8A System (01.02.04)",
          "platform_name": "Windows",
          "download_status": 221,
          "superceded_by": "NA",
          "patch_type": 12,
          "bulletin_id": "BI-001"
        }
      ]
    },
    "message_version": "1.4",
    "status": "success"
  }
                
Show full

Duration: 1 minute | Threshold: 30 | Lock period: 5 minutes

Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.