# 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. ## Endpoints `GET /dcapi/tools/disabledToolsStatus` ## Request URL `https://{server-hostname}:8383/dcapi/tools/disabledToolsStatus` ## Scope `Tools.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory: `application/json` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/tools/disabledToolsStatus \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## 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 ### Possible Response Codes - **200** HTTP code ### Sample Response: HTTP 200 ```json { "fileManager": false, "commandPrompt": false, "computerRename": true } ``` ![ ](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.