# Get Scheduler Patch Database Settings Retrieves the patch database synchronization scheduler configuration. ## Endpoints `GET /dcapi/patch/settings/schedulerPatchDatabase` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/patch/settings/schedulerPatchDatabase ## Scope `DesktopCentralCloud.PatchMgmt.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/patch/settings/schedulerPatchDatabase \ --header 'Authorization: Zoho-oauthtoken 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 ## Possible Response Codes - **200** — HTTP code ## 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 } ``` ## API Rate Limits ![](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.