License

Description

The license resource returns license information for your organization. ArcGIS Enterprise portal requires a valid license to function correctly.

ArcGIS Enterprise enforces user type licensing. Members are assigned a user type, which determines the privileges that can be granted to the member through a role. Each user type may include access to specific apps. In addition, members can be assigned add-on applications and user type extensions.

This resource returns higher level licensing information, such as the total number of registered members that can be added, the current number of members in the organization, and the version of ArcGIS Enterprise.

Request parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

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

1
https://machine.domain.com/webadaptor/portaladmin/license?f=pjson

JSON Response syntax

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
{
  "currentRegisteredMembers": <number of registered members>,
  "maximumRegisteredMembers": <number of maximum registered members allowed>,
  "version": <"version number">,
  "userTypes": [
    {
      "id": <"user type ID">
      "maximumRegisteredMembers": <number of maximum registered members allowed>,
      "expiration": <expiration in epoch time>,
      "currentRegisteredMembers": <number of registered members>
    }
  ],
  "appBundles": [
    {
      "id": <"app bundle ID">,
      "itemId": <"app bundle item ID">,
      "maximumRegisteredMembers": <number of maximum registered members allowed>,
      "expiration": <expiration in epoch time>
    }
  ],
  "apps": [
    {
      "id": <"app ID">,
      "itemId": <"app item ID">,
      "maximumRegisteredMembers": <number of maximum registered members allowed>,
      "expiration": <expiration in epoch time>
    }
  ],
  "extensions": [
    {
      "id": "<extension ID>",
      "itemId": "<item ID>",
      "maximumRegisteredMembers": <number of maximum registered members allowed>,
      "expiration": <expiration in epoch time>
    }
  ],
  "portalCapabilities": [
    {
      "id": <"portal capability ID">,
      "expiration": <expiration in epoch time>
    }
  ]
}

JSON Response example

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
{
  "currentRegisteredMembers": 70,
  "maximumRegisteredMembers": 1400,
  "version": "11.4",
  "userTypes": [
    {
      "id": "IndoorsUserUT",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000,
      "currentRegisteredMembers": 1
    },
    {
      "id": "creatorUT",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000,
      "currentRegisteredMembers": 53
    },
    {
      "id": "editorUT",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000,
      "currentRegisteredMembers": 2
    },
    {
      "id": "GISProfessionalAdvUT",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000,
      "currentRegisteredMembers": 6
    },
    {
      "id": "GISProfessionalStdUT",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000,
      "currentRegisteredMembers": 2
    },
    {
      "id": "viewerUT",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000,
      "currentRegisteredMembers": 4
    },
    {
      "id": "fieldWorkerUT",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000,
      "currentRegisteredMembers": 2
    }
  ],
  "appBundles": [
    {
      "id": "urbanSuiteAB",
      "itemId": "ea1dec565b6f4afbb72501433962d8b1",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    }
  ],
  "apps": [
    {
      "id": "allsource",
      "itemId": "0a5e092dee574858a89afa4686386450",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "cityEngine",
      "itemId": "b2eaa28669e54ec08ff87e0ceec591df",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "stMapEU",
      "itemId": "fc02404cdda24f72842d34b28267d77a",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "Insights",
      "itemId": "f761dd0f298944dcab22d1e888c60293",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "BusinessAnlyst",
      "itemId": "4d31a12347be4006a6976e917e0a5a85",
      "maximumRegisteredMembers": 400,
      "expiration": 1761091200000
    },
    {
      "id": "stMapAP",
      "itemId": "f93928a375df44c283e9b6a4e86230bf",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "Navigator",
      "itemId": "9f017d9f94c74154aa7b2bcd2216687f",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "stMapLatA",
      "itemId": "e52fef7bd6974a64a7da07f1feae2f6d",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "stMapNA",
      "itemId": "2de31df5f72346c2a0505cd1f181ba6b",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "arcgisUrban",
      "itemId": "55eedfcd408443d39fba0e7079d8b49f",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "arcgisprodesktop",
      "itemId": "d4a332a0be784dd2be53cec0a35e0859",
      "maximumRegisteredMembers": 5800,
      "expiration": 1761091200000
    },
    {
      "id": "appstudiostd",
      "itemId": "43747254302e4c2590ac7a0d1c4e84a9",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "runtimeanalysis",
      "itemId": "27718bed7b4648fa96e31942535c8137",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "workforce",
      "itemId": "ff54441c792546379cfd3c8f87d9a0b6",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "stMapMEnA",
      "itemId": "1baa5c0610c141a8948f8ce3a7a54124",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "arcgisd2m",
      "itemId": "0b0e0497ace34206a67413d051530ded",
      "maximumRegisteredMembers": 400,
      "expiration": 1761091200000
    }
  ],
  "extensions": [
    {
      "id": "locsharing",
      "itemId": "f1f34442877843d387d7776bbf74bb94",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    },
    {
      "id": "advediting",
      "itemId": "bdfda9051e1e43f08af9afda9578efd8",
      "maximumRegisteredMembers": 200,
      "expiration": 1761091200000
    }
  ],
  "portalCapabilities": [
    {
      "id": "indoorsspaces",
      "expiration": 1761091200000
    },
    {
      "id": "indoorsmaps",
      "expiration": 1761091200000
    },
    {
      "id": "ips",
      "expiration": 1761091200000
    }
  ]
}

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

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close