ZScaler (Beta)
Last updated
Was this helpful?
This is integration is currently in Beta. At this point in its development, any attempts to integrate with it will return a success, regardless of whether the information entered is accurate or not. For more information about our beta integrations, engage your Dropzone support representative.
The Dropzone platform integrates with ZScaler, a cloud-based security platform offering services such as cloud firewalls, data loss prevention, zero trust network access (ZTNA), and automated threat inspections.
ZScaler requires API credentials to enable.
To obtain API credentials, do the following:
Navigate to Administration > API Configuration > OneAPI > API Clients
Click "Add API Client"

Name the key something memorable, such as "Dropzone AI"
Click the box under "Status" to enable the API Client
Select an expiration period for the access token

Under the Client Authentication header, select the "Secret" validation type
Click "Add"
Assign the secret an expiration date
To reduce the number of times you need to perform this integration, we recommend selecting the maximum duration of 365 days.
Copy the secret shown for use later in the Dropzone UI, where it is called "Client Secret"

Click "Save"
In the API Clients page, copy the Client ID of your new token for use later in the Dropzone UI, where it is called "Client ID"

Once your API Client has been generated, you must also authenticate your API Client in ZScaler's OneAPI, to verify your client's identity. To do so, enter the following code into your request payload:
See ZScaler's authentication documentation for more information.
To enable the Data Source integration, you will need the following information:
Client ID
The Client ID value you generated earlier
Client Secret
The Client Secret value you generated earlier
Vanity Domain
The domain name of your organization, e.g. https://<your_domain>.zslogin.net
Cloud
Your Cloud environment, e.g. zscalerone, zscloud, etc
Navigate to your Dropzone AI tenant home page e.g. https://mycompany.dropzone.app
In the bottom left hand corner, navigate to Settings > Integrations

Click "Library"
If you have previously integrated this application, click "Configured"

In the Search bar, search ZScaler, then click "Configure"

Under the Data Source header, input the Client ID, Client Secret, and Vanity Domain
Select your cloud environment from the dropdown

Click "Test & Save" to finish
If you have any errors engage your Dropzone AI support representative.
Last updated
Was this helpful?
Was this helpful?
POST /oauth2/v1/token HTTP/1.1
Host: <vanity-domain>.zslogin.net
Content-Type: application/x-www-form-urlencoded
{
"grant_type": "client_credentials",
"client_id": "<Client ID>",
"client_secret": "<Client Secret>",
"audience": "https://api.zscaler.com"
}