Returns the execution summary details for a specific deployment run

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 per-device execution status, timing, and error details for a specific deployment run

Request URL

https://{serverurl}/intelligence/api/deployments/{deploymentId}/runs/{runId}/executionDetails

Scope

DesktopCentralCloud.DEX.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/deploymentRunSummaryDetails.v1+jsonapplication/deploymentRunSummaryDetails.v1+jsonCopied!

- Path Parameters

deploymentIdstringMandatory
runIdstringMandatory

- Query Parameters

objectIDstringOptional

Filter results to a specific deployed object ID

objectVersionIDstringOptional

Version ID of the object to filter execution details

objectTypestringOptional

Type of the object: 1=Workflow

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/intelligence/api/deployments/{deploymentId}/runs/{runId}/executionDetails \
  --header 'Accept: application/deploymentRunSummaryDetails.v1+json' \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
executionDetailsJSON Array

Per-device execution records for the deployment run

Show Sub-Attributes
JSON Object
Show Sub-Attributes
deviceNamestring

Name of the target device

statusinteger

Execution status code

statusRemarkstring

Human-readable execution status (e.g., Success)

startTimestring

Formatted execution start time

endTimestring

Formatted execution end time

errorCodestring

Error code when execution failed; null on success

errorMessagestring

Error message when execution failed; null on success

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "executionDetails": [
      {
        "statusRemark": "Success",
        "errorMessage": null,
        "errorCode": null,
        "startTime": "Apr 10, 2025 02:00 AM",
        "endTime": "Apr 10, 2025 02:05 AM",
        "deviceName": "DESKTOP-WIN11-01",
        "status": 1
      }
    ]
  }
                
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.