Get Scheduler 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 the patch database synchronization scheduler configuration.

Request URL

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

Scope

PatchMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Sample Request

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

Response Parameters

- HTTP code 200

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

Whether the scheduler is enabled

schedulerTypestring

Scheduler type: Daily, Weekly, Monthly

schedulerTimestring

Scheduled time in HH:mm format

schedulerDaysarray

Scheduled days of the week (1-7)

lastExecutionTimelong

Last execution timestamp in milliseconds since epoch

nextExecutionTimelong

Next execution timestamp in milliseconds since epoch

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Patch database scheduler configuration

Copied!
  {
    "schedulerDays": [
      1,
      2,
      3,
      4,
      5
    ],
    "nextExecutionTime": 1553145000000,
    "schedulerEnabled": true,
    "schedulerTime": "02:00",
    "schedulerType": "Daily",
    "lastExecutionTime": 1553058600000
  }
                
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.