# Checks whether compliance-restricted tools (Command Prompt, File Manager, Computer Rename) are currently disabled Returns the disabled or enabled status of compliance-gated tools — Command Prompt, File Manager, and Computer Rename — based on the system manager compliance settings configured by the administrator. ## Endpoint `GET /dcapi/tools/disabledToolsStatus` ## Request ### Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/tools/disabledToolsStatus ### Scope `DesktopCentralCloud.Tools.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — **Mandatory** - `application/json` ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/tools/disabledToolsStatus \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body: `application/json` - `JSON Object` - **commandPrompt** `boolean` - `true` if Command Prompt access is disabled by compliance settings - **fileManager** `boolean` - `true` if File Manager access is disabled by compliance settings - **computerRename** `boolean` - `true` if Computer Rename is disabled by compliance settings ### Sample Response: HTTP 200 ```json { "fileManager": false, "commandPrompt": false, "computerRename": true } ``` ### Possible Response Codes - **200** `HTTP code` ## Rate Limits **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.