# Retrieve remote office move progress Retrieves the current status of a remote office move operation including success count, failure count, and in-progress flags. ## Endpoints GET `/dcapi/som/computers/moveStatus` ## Request URL `https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/som/computers/moveStatus` ## Scope `DesktopCentralCloud.SOM.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` (Mandatory): `application/computerMoveStatus.v1+json` ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/som/computers/moveStatus \ --header 'Accept: application/computerMoveStatus.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 Response Body: `application/json` - `JSON Object` - **isAgentMoveInProgress** `boolean`: Indicates whether the remote office move workflow is currently being processed - **installInProgress** `boolean`: Indicates whether agent reinstallation is pending as part of the move operation (required when moving to a new Distribution Server) - **agentMoveSummary** `JSON Object`: Summary of the completed move operation including success and failure counts. Present only after the move finishes ## Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ### Move in progress ```json { "isAgentMoveInProgress": true, "installInProgress": false } ``` ### Move completed ```json { "isAgentMoveInProgress": false, "installInProgress": false, "agentMoveSummary": { "moveSuccessCount": 3, "isAgentMoveSuccess": false, "moveFailedCount": 1, "message": "3 out of 4 computers moved successfully" } } ``` ## 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.