Skip to content
URL:
https://<root>/about
Methods:
GET
Version Introduced:
11.5

Access requirements

Required privileges

The Enterprise 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 Enterprise 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 generateToken operation in the Enterprise Directory API. For security reasons, all POST requests made to the Enterprise Administrator API must include a token in the request body.


Learn how to generate a token

Description

The about resource resource compiles information to create a high-level overview of the different aspects of a ArcGIS Enterprise on Kubernetes deployment. Information returned by this resource includes data store details, licenses, and enabled architecture profiles, as well as information for any servers federated with the deployment.

Request parameters

ParameterDetails

redact

(Optional)

When set to true, all hostnames included as part of URLs in the response are replaced with placeholder values. If set to false, or not included in the request, hostnames will be appear as-is in the response.

Values: true | false

f

The response format. The default format is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access the about resource:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/admin/about?redact=true&f=pjson

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
  "currentBuild": "6702",
  "dataStores": [
    {
      "provider": "ArcGIS Data Store",
      "implementation": "Opensearch",
      "name": "arcgis-spatiotemporal-index-store-ask8i",
      "systemManaged": true,
      "id": "7fdc18192b084be7aed9e04d61aa9708",
      "type": "nosql"
    },
    {
      "provider": "ArcGIS Data Store",
      "implementation": "Apache Ignite",
      "name": "arcgis-cachestore-ko3db",
      "systemManaged": true,
      "id": "cce7e3d5a40d4d4d9a7cfb8ca2acae9a",
      "type": "memCacheStore"
    },
    {
      "provider": "Ozone",
      "implementation": "Ozone",
      "name": "arcgis-object-store-orae3",
      "systemManaged": true,
      "id": "9492e210-ef6b-4556-9d88-886d98ac82ee",
      "type": "objectStore"
    },
    {
      "provider": "UserManaged",
      "name": "fileShares-net-qalinux",
      "id": "35bcbf52618342b19a67028d63acb22c",
      "type": "folder"
    },
    {
      "provider": "ArcGIS Data Store",
      "implementation": "PostgreSQL",
      "name": "arcgis-relational-store-bobvl",
      "systemManaged": true,
      "id": "f327800ce3094d03b5ebbc88c709149e",
      "type": "egdb"
    },
    {
      "provider": "UserManaged",
      "name": "fileShares-qalinux.esri.com-EntConfidenceTestData-Data",
      "id": "700584f926fe4d6aa12fefaf7bddab00",
      "type": "folder"
    }
  ],
  "redacted": true,
  "siteState": "ready",
Expand

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.