Skip to main content

Add Proxy Settings for Prisma Cloud Compute

POST 

/api/v32.04/settings/proxy

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

Configures the proxy settings.

For more information, see Proxy Settings.

cURL Request

Refer to the following example cURL request that specifies the proxy to use to access the Internet:

$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
-d \
'{
"httpProxy":"http://proxyserver.example.com:8282"
}' \
https://<CONSOLE>/api/v<VERSION>/settings/proxy

Request

Body

    ca string

    Proxy's CA for Defender to trust. Required when using TLS intercept proxies.

    httpProxy string

    Proxy address.

    noProxy string

    List of addresses for which the proxy should not be used.

    password object

    Secret Stores the plain and encrypted version of a value. The plain version is not stored in a database

    encrypted string

    Specifies an encrypted value of the secret.

    plain string

    Specifies the plain text value of the secret.

    user string

    Username to authenticate with the proxy.

Responses

OK

Loading...