# Get Patch Database Settings Retrieves patch database platform settings. ## Endpoint **GET** `/dcapi/patch/settings/patchDatabaseSettings` ## Request URL `https://{server-hostname}:8383/dcapi/patch/settings/patchDatabaseSettings` ## Scope `PatchMgmt.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/patch/settings/patchDatabaseSettings \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json **JSON Object** - **windowsEnabled** `boolean`: Whether Windows patch management is enabled - **macEnabled** `boolean`: Whether Mac patch management is enabled - **linuxEnabled** `boolean`: Whether Linux patch management is enabled - **thirdPartyEnabled** `boolean`: Whether third-party patch management is enabled - **schedulerSettings** `JSON Object`: Scheduler configuration for patch database sync ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 Platform-specific patch database settings ```json { "linuxEnabled": false, "windowsEnabled": true, "thirdPartyEnabled": true, "schedulerSettings": { "schedulerEnabled": true, "schedulerTime": "02:00", "schedulerType": "Daily" }, "macEnabled": true } ``` ![ ](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.