# Retrieves prerequisite information required to display the scheduled power operation tasks list Retrieves prerequisite information required to display the scheduled power operation tasks list ## Endpoint `GET /dcapi/tools/shutdown/tasks` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/tools/shutdown/tasks` ### 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/shutdown/tasks \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` - `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 } ] } ``` ## API 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.