# Retrieve agent installation progress Retrieves the current status and progress of an agent installation operation including completed, total, and WAN computer counts. ## Endpoints `GET /dcapi/som/computers/agentInstallStatus` ## Request URL `https://`[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/dcapi/som/computers/agentInstallStatus` ## Scope `DesktopCentralCloud.SOM.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers | Header | Type | Required | Value | |---|---|---|---| | Accept | string | Mandatory | `application/somComputerAgentInstallationStatus.v1+json` | ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/som/computers/agentInstallStatus \ --header 'Accept: application/somComputerAgentInstallationStatus.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` | Attribute | Type | Description | |---|---|---| | installInProgress | boolean | Whether agent installation is currently in progress | | completedComputerCount | string | Number of computers where installation completed (success or fail) | | totalComputerCount | string | Total number of computers targeted for installation | | wanComputerCount | string | Number of WAN/remote computers in the install batch | | installFailedCount | string | Number of computers where installation failed. Present only if failures exist | | retryInstallFailedCount | string | Count of failed installations eligible for retry | | isAgentInstallStopped | string | Whether the agent install workflow was stopped by the user | ## Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ## Sample Response: HTTP 200 ### Installation in progress ```json { "totalComputerCount": 10, "wanComputerCount": 3, "completedComputerCount": 5, "installInProgress": true } ``` ### Installation completed with failures ```json { "totalComputerCount": 10, "wanComputerCount": 3, "completedComputerCount": 10, "installFailedCount": 2, "retryInstallFailedCount": "1", "installInProgress": false } ``` ## Rate Limits **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.