Access requirements
Required privileges
The Portal Administrator API requires privilege-based access. An administrator must be assigned a specific user privilege, or role, to access any given endpoint. Listed below are the user privileges or roles an administrator can be assigned that provides access to this endpoint. If multiple privileges are listed, only one needs to be assigned to gain access.
Tokens
This API requires token-based authentication. A token is automatically generated for administrators who sign in to the Portal Administrator API directory's HTML interface. Tokens generated in this way are stored for the entirety of the session.
Those accessing the API directory outside of the HTML interface will need to acquire a session token from the generate operation in the Portal Directory API. For security reasons, all POST requests made to the Portal Administrator API must include a token in the request body.
Description
The about resource compiles and returns information for each component that makes up an ArcGIS Enterprise deployment — Portal for ArcGIS, ArcGIS Server, and ArcGIS Data Store. This resource returns both a high-level overview of the organization (including machine information, the role for each federated server, recently created backups for organizations using ArcGIS Enterprise 12.0 or later, and the data store type for each configured data store) and an in-depth look at each component.
The tabs below outline the detailed information returned for each component:
The following information is returned for Portal for ArcGIS:
- ArcGIS Enterprise version and build information
- Hardware information for each portal machine
- Organization user type, app, extension, and capability licenses
- Installed patches, including the install date and patch name (introduced at ArcGIS Enterprise 12.0)
{
//...
"portal": {
"lastUpdated": 1756158490891,
"organizationUrl": "https://organization.example.com/gis",
"currentBuild": "58722",
"currentVersion": "12.0.0",
"machines": [
{
"machineName": "ORGANIZATION.EXAMPLE.COM",
"adminURL": "https://organization.example.com:7443/arcgis",
"role": "",
"webServerCertificateAlias": "esri_wildcard_202508250221",
Request parameters
| Parameter | Details |
|---|---|
(Optional) | When set to Values: |
| The response format. The default format is Values: |
Example usage
The following is a sample request URL used to access the about resource with redacted values:
https://organization.example.com/<context>/portaladmin/about?redact=true&f=pjsonJSON Response example
{
"siteMap": {
"summary": {
"portal": [
{
"machines": ["REDACTED.example.com"],
"totalCpu": 2,
"totalRam": 15359
}
],
"servers": [
{
"machines": ["REDACTED.example.com"],
"totalCpu": 8,
"totalRam": 32456,
"siteRole": "FEDERATED_SERVER"
},
{
"machines": ["REDACTED.example.com"],
"totalCpu": 8,
"totalRam": 32456,
"siteRole": "FEDERATED_SERVER"
},
{
"machines": ["REDACTED.example.com"],
"totalCpu": 2,
"totalRam": 15359,
"siteRole": "HOSTING_SERVER"
},
{
"machines": ["REDACTED.example.com"],
"totalCpu": 2,
"totalRam": 15359,
"siteRole": "FEDERATED_SERVER"
}
],
"dataStores": [
{
"machines": ["REDACTED.example.com"],
"totalCpu": 2,
"totalRam": 15359,
"store": "graphStore"
},
{
"machines": ["REDACTED.example.com"],
"totalCpu": 2,
"totalRam": 15359,
"store": "objectStore"
},
{