# Get Scheduler Patch Database Settings Retrieves the patch database synchronization scheduler configuration. ## Endpoint `GET /dcapi/patch/settings/schedulerPatchDatabase` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/patch/settings/schedulerPatchDatabase` ### Scope `PatchMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/patch/settings/schedulerPatchDatabase \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json **JSON Object** - **schedulerEnabled** (`boolean`): Whether the scheduler is enabled - **schedulerType** (`string`): Scheduler type: Daily, Weekly, Monthly - **schedulerTime** (`string`): Scheduled time in HH:mm format - **schedulerDays** (`array`): Scheduled days of the week (1-7) - **lastExecutionTime** (`long`): Last execution timestamp in milliseconds since epoch - **nextExecutionTime** (`long`): Next execution timestamp in milliseconds since epoch ### Sample Response: HTTP 200 Patch database scheduler configuration ```json { "schedulerDays": [ 1, 2, 3, 4, 5 ], "nextExecutionTime": 1553145000000, "schedulerEnabled": true, "schedulerTime": "02:00", "schedulerType": "Daily", "lastExecutionTime": 1553058600000 } ``` ### Possible Response Codes - **200** (`HTTP code`) ## Rate Limiting ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.