# Retrieve agent installation progress Retrieves the current status and progress of an agent installation operation including completed, total, and WAN computer counts. ## Endpoint `GET /dcapi/som/computers/agentInstallStatus` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/som/computers/agentInstallStatus` ### Scope `SOM.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — **Mandatory** - `application/somComputerAgentInstallationStatus.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/som/computers/agentInstallStatus \ --header 'Accept: application/somComputerAgentInstallationStatus.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` - **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 - **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 ![](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.