# Retrieve remote office move progress Retrieves the current status of a remote office move operation including success count, failure count, and in-progress flags. ## Endpoint `GET /dcapi/som/computers/moveStatus` ## Request URL `https://{server-hostname}:8383/dcapi/som/computers/moveStatus` ### Scope `SOM.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory: `application/computerMoveStatus.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/som/computers/moveStatus \ --header 'Accept: application/computerMoveStatus.v1+json' \ --header 'Authorization: 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" } } ``` ![ ](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.