# Retrieve computer removal request status Retrieves the status of a computer removal action request. Returns whether the removal operation is still in progress. ## Endpoint `GET /dcapi/som/computers/actionRequest/removeStatus` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/som/computers/actionRequest/removeStatus ## Scope `DesktopCentralCloud.SOM.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** (`string`, Mandatory): `application/computerRemoveStatus.v1+json` ### Query Parameters - **actionRequestID** (`string`, Optional): The action request ID returned from the remove endpoint. If not provided, returns the latest remove status for the user. ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/som/computers/actionRequest/removeStatus \ --header 'Accept: application/computerRemoveStatus.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response body: `application/json` - `JSON Object` - **inProgress** (`boolean`): Indicates whether the computer removal operation is still being processed. Returns false once all computers have been fully removed. ## Possible Response Codes - **200** (`HTTP code`) ## Sample Response: HTTP 200 ### Removal in progress ```json { "inProgress": true } ``` ### Removal completed ```json { "inProgress": false } ``` ## 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.