# Retrieve the execution status of a configuration Returns the detailed execution status for a specific configuration across all targeted endpoints. ## Endpoint **GET** `/dcapi/configuration/{collectionId}/executionStatus` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/configuration/{collectionId}/executionStatus` ### Scope `Common.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (`string`, Mandatory): `application/executionStatus.v1+json` #### Path Parameters - **collectionId** (`string`, Mandatory): The unique numeric identifier of the configuration whose execution status is to be retrieved. Fetch from [Get Configurations View](https://www.manageengine.com/products/desktop-central/help/api/onpremise/deployment-fw-get-configurations-view.html). ### Sample Request #### Curl ```curl curl --request GET \ --url https://appdomain/dcapi/configuration/{collectionId}/executionStatus \ --header 'Accept: application/executionStatus.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` #### Java ```java import java.net.URI; import java.net.http.HttpClient; import java.net.http.HttpRequest; import java.net.http.HttpResponse; import java.io.IOException; import java.net.http.HttpTimeoutException; public class Main { public static void main(String[] args) { HttpRequest request = HttpRequest.newBuilder() .uri(URI.create("https://appdomain/dcapi/configuration/{collectionId}/executionStatus")) .header("Accept", "application/executionStatus.v1+json") .header("Authorization", " d92d4xxxxxxxxxxxxx15f52") .method("GET", HttpRequest.BodyPublishers.noBody()) .build(); HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString()); System.out.println(response.body()); } } ``` #### Python ```python import http.client conn = http.client.HTTPSConnection("appdomain") headers = { 'Accept': "application/executionStatus.v1+json", 'Authorization': " d92d4xxxxxxxxxxxxx15f52" } conn.request("GET", "/dcapi/configuration/{collectionId}/executionStatus", headers=headers) res = conn.getresponse() data = res.read() print(data.decode("utf-8")) ``` #### Deluge ```javascript headersMap = Map(); headersMap.put("Accept", "application/executionStatus.v1+json"); response = invokeUrl [ url: "https://appDomain/dcapi/configuration/{collectionId}/executionStatus" type: GET headers: headersMap connection: connection_name ] info response; ``` #### PowerShell ```powershell $headers=@{} $headers.Add("Accept", "application/executionStatus.v1+json") $headers.Add("Authorization", " d92d4xxxxxxxxxxxxx15f52") $response = Invoke-WebRequest -Uri 'https://appdomain/dcapi/configuration/{collectionId}/executionStatus' -Method GET -Headers $headers ``` ## Response Parameters ### HTTP Code 200 Response body: `application/json` - `JSON object` - **collectionId** (`long`): The collection ID being reported on. - **executionDetails** (`JSON array`): Array of per-resource execution status objects. - **totalCount** (`string`): Total number of targeted resources matching the applied filters. - **offset** (`string`): Current pagination offset. - **limit** (`string`): Current page size. ### HTTP Code 401 Response body: `application/json` - `JSON object` - **errorCode** (`long`): Unauthorized error code returned when authentication credentials are missing, expired, or invalid (authentication=required). - **errorMsg** (`string`): Authentication failure reason. ### Possible Response Codes - **200**: HTTP code - **401**: HTTP code ### Sample Response: HTTP 200 Execution status with both successful and failed resources ```json { "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 } ``` ### Sample Response: HTTP 401 User lacks read role for execution status ```json { "error_description": "Access denied - You are not allowed to access the requested resource.", "error_code": "UAC_UNAUTHORIZED" } ``` ## 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.