Get Patch Database Settings

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 patch database platform settings.

Request URL

https://{server-hostname}:8383/dcapi/patch/settings/patchDatabaseSettings

Scope

PatchMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Sample Request

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

Response Parameters

- HTTP code 200

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

Whether Windows patch management is enabled

macEnabledboolean

Whether Mac patch management is enabled

linuxEnabledboolean

Whether Linux patch management is enabled

thirdPartyEnabledboolean

Whether third-party patch management is enabled

schedulerSettingsJSON Object

Scheduler configuration for patch database sync

Show Sub-Attributes
schedulerEnabledboolean

Whether the scheduler is enabled

schedulerTypestring

Scheduler type: Daily, Weekly, Monthly

schedulerTimestring

Scheduled time in HH:mm format

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Platform-specific patch database settings

Copied!
  {
    "linuxEnabled": false,
    "windowsEnabled": true,
    "thirdPartyEnabled": true,
    "schedulerSettings": {
      "schedulerEnabled": true,
      "schedulerTime": "02:00",
      "schedulerType": "Daily"
    },
    "macEnabled": true
  }
                
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.