Skip to main content

Add Intelligence Stream Settings

POST 

/api/v32.04/settings/intelligence

x-prisma-cloud-target-env: {"permission":"systemOperations","saas":false,"self-hosted":true}
x-public: true

Configures the Intelligence Stream.

For more information, see Intelligence Stream

cURL Request

Refer to the following example cURL command that uses basic auth to configure settings of your Intelligence Stream.

$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
-d ' {
"windowsFeedEnabled": true,
"enabled": true,
"address": "https://intelligence.example.com",
"token": "<TOKEN>",
}' \
"https://<CONSOLE>/api/v<VERSION>/settings/intelligence"

Request

Body

    address string

    Address is the intelligence service address.

    customEndpoint string

    CustomEndpoint is the user defined custom endpoint.

    customEndpointCACert string

    CustomEndpointCACert is the custom CA cert bundle for trusting the custom endpoint.

    customEndpointCredentialID string

    CustomEndpointCredentialID is the custom endpoint credential ID.

    customEndpointEnabled boolean

    CustomEndpointEnabled indicates that the user custom endpoint is enabled.

    enabled boolean

    Enabled indicates whether intelligence service is enabled.

    token string

    Token is the token used to access intelligence service.

    uploadDisabled boolean

    UploadDisabled indicates whether logs uploading is disabled.

    windowsFeedEnabled boolean

    WindowsFeedEnabled indicates whether windows feed is enabled.

Responses

OK

Loading...