# Poll enable-management operation status Polls the status of an enable-management operation for staged computers. Returns whether the operation is still in progress. ## Endpoints `GET /dcapi/som/staged/enable-management/status` ## Request URL `https://`[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/dcapi/som/staged/enable-management/status` ## Scope `DesktopCentralCloud.SOM.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory - `application/computerActionResponse.v1+json` ### Query Parameters - **actionRequestID** `string` — Optional - The action request ID returned from the enable-management POST endpoint. ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/som/staged/enable-management/status \ --header 'Accept: application/computerActionResponse.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` `JSON Object` - **inProgress** `boolean` - true if the enable-management operation is still running, false if completed ## Possible Response Codes - **200** — HTTP code ## Sample Response: HTTP 200 ### Operation in progress ```json { "inProgress": true } ``` ### Operation completed ```json { "inProgress": false } ``` ![](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.