Retrieve Patch Details Summary

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

Retrieves high-level patch summary metrics including counts of missing, installed, applicable, supported, and latest patches across all managed systems.

Endpoints

Request URL

https://{server-hostname}:8383/dcapi/patch/summary

Scope

PatchMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Sample Request

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

Response Parameters

- HTTP code 200

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

Total count of missing patches across all managed systems

installedstring

Total count of installed patches across all managed systems

applicablestring

Total count of applicable patches across all managed systems

supportedstring

Total count of supported patches in the vulnerability database

lateststring

Count of recently released patches

- HTTP code 500

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

Error code: INTERNAL_ERROR for server-side failures

error_descriptionstring

Localized error description: dc.rest.api_internal_error

Possible Response Codes

200HTTP code
500HTTP code

Sample Response: HTTP 200

Patch summary counts across all managed systems

Copied!
  {
    "installed": 42,
    "missing": 592,
    "applicable": 634,
    "latest": 23569,
    "supported": 323416
  }
                
Show full

Sample Response: HTTP 500

Server-side error

Copied!
  {
    "error_description": "dc.rest.api_internal_error",
    "error_code": "INTERNAL_ERROR"
  }
                
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.