# 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://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/tools/wol/settings ### Scope `DesktopCentralCloud.Tools.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory - `application/json` ### Sample Request ```bash curl --request GET \ --url https://appdomains/dcapi/tools/wol/settings \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` `JSON Object` - **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 ### Possible Response Codes - **200** — HTTP code ### Sample Response: HTTP 200 ```json { "wolPort": 9, "linuxEnabled": false, "windowsEnabled": true, "enableWolAutoSettings": true, "waitTime": 3, "macEnabled": false } ``` ## Rate Limit ![](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.