Retrieve the execution status of a configuration

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 detailed execution status for a specific configuration across all targeted endpoints.

Request URL

https://{server-hostname}:8383/dcapi/configuration/{collectionId}/executionStatus

Scope

Common.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

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

- Path Parameters

collectionIdstringMandatory

The unique numeric identifier of the configuration whose execution status is to be retrieved. Fetch from Get Configurations View .

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/dcapi/configuration/{collectionId}/executionStatus \
  --header 'Accept: application/executionStatus.v1+json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'
Show full

Response Parameters

- HTTP code 200

Response Body - application/json
JSON object
Hide Sub-Attributes
collectionIdlong

The collection ID being reported on

executionDetailsJSON array

Array of per-resource execution status objects

Show Sub-Attributes
JSON object
Show Sub-Attributes
resourceIdlong

The unique resource (computer/user) ID

resourceNamestring

Display name of the resource

domainstring

Active Directory domain of the resource

remoteOfficestring

Remote office the resource belongs to

statusstring

Execution status — success, failed, yetToApply, or inProgress

remarksstring

Human-readable status reason or error message

executedTimestring

Timestamp of last execution attempt in yyyy-MM-dd HH:mm:ss format

totalCountstring

Total number of targeted resources matching the applied filters

offsetstring

Current pagination offset

limitstring

Current page size

- HTTP code 401

Response Body - application/json
JSON object
Hide Sub-Attributes
errorCodelong

Unauthorized error code returned when authentication credentials are missing, expired, or invalid (authentication=required)

errorMsgstring

Authentication failure reason

Possible Response Codes

200HTTP code
401HTTP code

Sample Response: HTTP 200

Execution status with both successful and failed resources

Copied!
  {
    "offset": 0,
    "executionDetails": [
      {
        "resourceId": 5001,
        "remoteOffice": "HQ",
        "executedTime": "2026-03-20 14:30:00",
        "domain": "CORP",
        "resourceName": "DESKTOP-ABC123",
        "remarks": "Configuration applied successfully",
        "status": "success"
      },
      {
        "resourceId": 5002,
        "remoteOffice": "Branch-1",
        "executedTime": "2026-03-20 14:35:00",
        "domain": "CORP",
        "resourceName": "LAPTOP-DEF456",
        "remarks": "Insufficient disk space",
        "status": "failed"
      }
    ],
    "limit": 25,
    "totalCount": 30,
    "collectionId": 12345
  }
                
Show full

Sample Response: HTTP 401

User lacks read role for execution status

Copied!
  {
    "error_description": "Access denied - You are not allowed to access the requested resource.",
    "error_code": "UAC_UNAUTHORIZED"
  }
                
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.