Retrieves the read-only display details of the specified scheduled Wake on LAN task

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

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.

Request URL

https://{serverurl}/dcapi/tools/wol/tasks/{taskId}/showTaskDetails

Scope

DesktopCentralCloud.Tools.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!

- Path Parameters

taskIdstringMandatory

The unique identifier of the task

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
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
Hide Sub-Attributes
taskIdlong

Unique identifier of the WOL task

taskNamestring

User-defined name of the WOL task

statusstring

Current task status: Active or Suspended

targetCountinteger

Number of target computers in the task

lastExecutedTimelong

Epoch timestamp of the most recent execution

nextRunTimelong

Epoch timestamp of the next scheduled execution

executionHistoryarray

Array of past execution records with runTime, successCount, and failureCount

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "lastExecutedTime": 1711339200000,
    "nextRunTime": 1711425600000,
    "executionHistory": [
      {
        "successCount": 38,
        "runTime": 1711339200000,
        "failureCount": 2
      }
    ],
    "taskName": "Morning WOL",
    "targetCount": 40,
    "taskId": 18,
    "status": "Active"
  }
                
Show full

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.