# Retrieves the current Wake on LAN global configuration settings Returns the Wake on LAN configuration including the UDP port, wait time, automatic settings detection flag, and platform enablement flags (Windows, macOS, Linux) along with OS platform details. ## Endpoint `GET /dcapi/tools/wol/settings` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/tools/wol/settings` ### Scope `Tools.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory: `application/json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/tools/wol/settings \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` - `wolPort` `integer`: UDP port used for Wake on LAN magic packets - `waitTime` `integer`: Wait time in seconds between retry attempts - `enableWolAutoSettings` `boolean`: Whether automatic network settings detection is enabled ### Sample Response: HTTP 200 ```json { "wolPort": 9, "linuxEnabled": false, "windowsEnabled": true, "enableWolAutoSettings": true, "waitTime": 3, "macEnabled": false } ``` ### Possible Response Codes - **200** `HTTP code` ## 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.