# Retrieves prerequisite information required to display the scheduled power operation tasks list Retrieves prerequisite information required to display the scheduled power operation tasks list ## Endpoints `GET` `/dcapi/tools/shutdown/tasks` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/tools/shutdown/tasks ## Scope `DesktopCentralCloud.Tools.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` **Mandatory**: `application/json` ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/tools/shutdown/tasks \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 #### Response Body — application/json `JSON Object` - **operationTypes** `array`: Array of supported operation type objects with id and name: Shutdown, Restart, Logoff, Lock, Hibernate - **platforms** `array`: Array of supported platform objects with id, name, and isEnabled flag - **isFeatureEnabled** `boolean`: true if the Shutdown/Restart feature is enabled in the current license ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ```json { "isFeatureEnabled": true, "operationTypes": [ { "name": "Shutdown", "id": 1 }, { "name": "Restart", "id": 2 }, { "name": "Logoff", "id": 3 }, { "name": "Lock", "id": 4 }, { "name": "Hibernate", "id": 5 } ], "platforms": [ { "isEnabled": true, "name": "Windows", "id": 1 }, { "isEnabled": true, "name": "macOS", "id": 2 } ] } ``` ![](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.