# 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://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/configuration/{collectionId}/executionStatus` ### Scope `DesktopCentralCloud.Common.READ` ### Header `Authorization: Zoho-oauthtoken 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/cloud/deployment-fw-get-configurations-view.html). #### Query Parameters - **status** (`string`, Optional): Filter results by execution status (e.g., yet_to_deploy, succeeded, failed, in_progress). - **remoteOffice** (`string`, Optional): Filter results by remote office name. - **domain** (`string`, Optional): Filter results by domain name. - **resource** (`string`, Optional): Filter results by resource/computer name. - **offset** (`integer`, Optional): Starting index for pagination. Default is 0. - **limit** (`string`, Optional): Maximum number of records to return per page. ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/configuration/{collectionId}/executionStatus \ --header 'Accept: application/executionStatus.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP 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 401 Response body: `application/json` - `JSON Object` - **errorCode** (`long`): Unauthorized error code: credentials missing, expired, or invalid. - **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 Limit ![](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.