Managing Administration Using API
This article provides information for managing Zscaler Digital Experience (ZDX) Administration using APIs. All APIs are rate limited. To learn more, see Understanding Rate Limiting.
Getting Department Details
To get the details of all the configured departments, send a GET request to the endpoint /administration
. Provide the following in the request:
from
: The timestamp, in epoch, from when the data is displayed.to
: The timestamp, in epoch, till when the data is displayed.
For example, in Python:
payload = { "from":1493967600000, "to":1496645999999 }
The request body can also include the search
attribute to get the data for a specific department ID or name.
- View an example response
{ "id": 38745231567, "name": "Engineering" }
Close
A successful response returns code 200. To learn more, see Understanding Error Codes.
Getting Location Details
To get the details of all the configured Zscaler locations, send a GET request to the endpoint /administration
. Provide the following in the request:
from
: The timestamp, in epoch, from when the data is displayed.to
: The timestamp, in epoch, till when the data is displayed.
For example, in Python:
payload = { "from":1493967600000, "to":1496645999999 }
The request body can also include the search
attribute to get the data for a specific location ID or name.
- View an example response
{ "id": 72840124, "name": "US-BHE23-CBR - San Francisco" }
Close
A successful response returns code 200. To learn more, see Understanding Error Codes.