Get Telemetry Settings
GET/api/v32.07/settings/telemetry
x-prisma-cloud-target-env: {"permission":"systemOperations"}
Returns the telemetry settings that anonymously reports the threats and vulnerabilities to Prisma Cloud Compute.
For more information, see telemetry article.
cURL Request
Refer to the following example cURL request that retrieves the settings if telemetry is enabled or not:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
"https://<CONSOLE>/api/v<VERSION>/settings/telemetry"
Responses
- 200
- default
TelemetrySettings is the telemetry settings
- application/json
- Schema
- Example (from schema)
Schema
enabled boolean
Enabled determines whether the telemetry settings are enabled.
{
"enabled": true
}
Loading...