Skip to content
URL:
https://organization.example.com/<context>/admin
Methods:
GET
Operations:
Create Site
Child Resources:
About, Organizations, Services, Security, Uploads, Datastores, System, Logs, Overview, Mode, Usage Statistics, Jobs, Health Check, Cloud, Notebooks
Version Introduced:
10.9

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

When you install an ArcGIS Enterprise on Kubernetes deployment for the first time, you must create a new organization site. A site is a collection of resources and operations that are used to administer and manage your organization. Once the organization site has been created, the result is the root resource for administering your deployment and a collection of hierarchically organized resources: organizations, services, uploads, datastores, system, security, logs, and jobs. Alternative views of the root page, such as json and pjson response formats, return the organization site's state and logs from its configuration. All views return the deployment version number.

Request parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | pjson | json

Example usage

The following is a sample request URL used to access the ArcGIS Enterprise Administrator API root page:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/admin?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
{
  "fullVersion": "10.9.1",
  "resources": [
    "orgs",
    "logs",
    "system",
    "datastores",
    "uploads",
    "services"
  ],
  "currentVersion": 10.9.1,
  "status": {
    "stages": [
      {
        "lastUpdated": 1619131335931,
        "name": "License validation",
        "state": "completed"
      },
      {
        "lastUpdated": 1619131382110,
        "name": "Configuration store",
        "state": "completed"
      },
      {
        "lastUpdated": 1619131592279,
        "name": "Relational store",
        "state": "completed"
      },
      {
        "lastUpdated": 1619131517860,
        "name": "Queue store",
        "state": "completed"
      },
      {
        "lastUpdated": 1619131447080,
        "name": "In-memory store",
        "state": "completed"
      },
      {
        "lastUpdated": 1619131510931,
        "name": "Object store",
        "state": "completed"
      },
      {
        "lastUpdated": 1619131535456,
        "name": "Spatiotemporal and index store",
        "state": "completed"
      },
      {
        "lastUpdated": 1619132117498,
        "name": "Portal REST API",
        "state": "completed"
      },
      {
        "lastUpdated": 1619132336315,
        "name": "Services REST API",
        "state": "completed"
      },
      {
        "lastUpdated": 1619132300852,
        "name": "Service lifecycle manager",
        "state": "completed"
      },
      {
        "lastUpdated": 1619131405722,
        "name": "Usage statistics",
        "state": "completed"
      },
      {
        "lastUpdated": 1619132924079,
        "name": "System and utility services",
        "state": "completed"
      },
      {
        "lastUpdated": 1619132203414,
        "name": "Pod replicas",
        "state": "completed"
      }
    ],
    "state": "ready",
     "message": "The process to create a new organization has completed successfully."
  },
  "info": {"build": "1094"}
}

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