Get Advanced Defender Settings
GET/api/v32.07/settings/defender
x-prisma-cloud-target-env: {"permission":"manageDefenders"}
Returns the advanced settings for Defenders.
cURL Request
Refer to the following example cURL command that gets all advanced settings for Defenders:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
'https://<CONSOLE>/api/v<VERSION>/settings/defender'
A successful response returns all advanced settings for Defenders.
Responses
- 200
- default
Settings is the Defender settings
- application/json
- Schema
- Example (from schema)
Schema
Indicates if the admission controller is enabled (true) or not (false).
Relative path to the admission control webhook HTTP endpoint.
AppEmbeddedFileSystemTracingEnabled is the default deployment state for app embedded Defenders file system tracing.
Deprecated: indicates if defenders should be automatically upgraded to the latest version.
Number of consecutive days a Defender must remain disconnected for it to be considered decommissioned.
Indicates if Defenders support host custom compliance checks (true) or not (false).
Port on which Defenders listen.
{
"admissionControlEnabled": true,
"admissionControlWebhookSuffix": "string",
"appEmbeddedFileSystemTracingEnabled": true,
"automaticUpgrade": true,
"disconnectPeriodDays": 0,
"hostCustomComplianceEnabled": true,
"listeningPort": 0
}