Get Intelligence Stream Settings
GET/api/v32.07/settings/intelligence
x-prisma-cloud-target-env: {"permission":"systemOperations"}
Returns the details about the Intelligence Stream configuration.
cURL Request
Refer to the following example cURL command that uses basic auth to retrieve your Intelligence Stream configuration settings.
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
"https://<CONSOLE>/api/v<VERSION>/settings/intelligence"
Responses
- 200
- default
IntelligenceSettings are the intelligence service settings
- application/json
- Schema
- Example (from schema)
Schema
Address is the intelligence service address.
CustomEndpoint is the user defined custom endpoint.
CustomEndpointCACert is the custom CA cert bundle for trusting the custom endpoint.
CustomEndpointCredentialID is the custom endpoint credential ID.
CustomEndpointEnabled indicates that the user custom endpoint is enabled.
Enabled indicates whether intelligence service is enabled.
Token is the token used to access intelligence service.
UploadDisabled indicates whether logs uploading is disabled.
WindowsFeedEnabled indicates whether windows feed is enabled.
{
"address": "string",
"customEndpoint": "string",
"customEndpointCACert": "string",
"customEndpointCredentialID": "string",
"customEndpointEnabled": true,
"enabled": true,
"token": "string",
"uploadDisabled": true,
"windowsFeedEnabled": true
}