# Retrieves the read-only display details of the specified scheduled Wake on LAN task Returns the full display details of the specified scheduled Wake on LAN task, including execution history, target list, and schedule summary for the task detail view. ## Endpoints GET `/dcapi/tools/wol/tasks/{taskId}/showTaskDetails` ## Request URL `https://`[serverurl](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/dcapi/tools/wol/tasks/{taskId}/showTaskDetails` ## Scope `DesktopCentralCloud.Tools.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** (`string`, Mandatory): `application/json` ### Path Parameters - **taskId** (`string`, Mandatory): The unique identifier of the task ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/tools/wol/tasks/{taskId}/showTaskDetails \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — application/json - JSON Object - **taskId** (`long`): Unique identifier of the WOL task - **taskName** (`string`): User-defined name of the WOL task - **status** (`string`): Current task status: Active or Suspended - **targetCount** (`integer`): Number of target computers in the task - **lastExecutedTime** (`long`): Epoch timestamp of the most recent execution - **nextRunTime** (`long`): Epoch timestamp of the next scheduled execution - **executionHistory** (`array`): Array of past execution records with runTime, successCount, and failureCount ## Possible Response Codes - **200** (`HTTP code`) ## Sample Response: HTTP 200 ```json { "lastExecutedTime": 1711339200000, "nextRunTime": 1711425600000, "executionHistory": [ { "successCount": 38, "runTime": 1711339200000, "failureCount": 2 } ], "taskName": "Morning WOL", "targetCount": 40, "taskId": 18, "status": "Active" } ``` ## 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.