Retrieves the compliance settings controlling access to restricted system manager tools

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Returns the compliance configuration for system manager tools, including the enabled or disabled status for Command Prompt, File Manager, and Computer Rename tools.

Request URL

https://{server-hostname}:8383/dcapi/tools/complianceSetting

Scope

Tools.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/dcapi/tools/complianceSetting \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
commandPromptinteger

Command Prompt compliance level: 0=Disabled, 1=Enabled, 2=Prompt, 3=Block

fileManagerinteger

File Manager compliance level: 0=Disabled, 1=Enabled, 2=Prompt, 3=Block

computerRenameinteger

Computer Rename compliance level: 0=Disabled, 1=Enabled, 2=Block

fileManagerPromptEnabledboolean

Whether File Manager displays a prompt before access

cmdPromptPromptEnabledboolean

Whether Command Prompt displays a prompt before access

isAlwaysPromptEnabledboolean

Whether the prompt is always shown regardless of compliance level

promptMessagestring

Custom message displayed in the compliance prompt dialog

promptTimeoutinteger

Auto-dismiss timeout in seconds for the compliance prompt. Range: 10-3600

showPageboolean

Whether the compliance settings page is shown in the admin console

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "promptTimeout": 30,
    "fileManager": 1,
    "showPage": true,
    "fileManagerPromptEnabled": true,
    "isAlwaysPromptEnabled": false,
    "promptMessage": "Please provide a reason for access.",
    "commandPrompt": 1,
    "cmdPromptPromptEnabled": false,
    "computerRename": 0
  }
                
Show full