A group is a collection of items available to a specific set of users in the portal.
Working with groups Groups are used to organize and share items and define which users can access and view specified content. You can create groups of hosted layers, web maps, or any other item type. Or you can create a group and add users to it, allowing them to collaborate and share items within the group.
The typical workflow for using groups is to:
Define a group in the portal. Add items the group. Add users to the group. Manage the group properties. Code examples Search for a group Find a one or more groups in the portal using a query.
APIs ArcGIS Maps SDK for JavaScript ArcGIS Maps SDK for JavaScript ArcGIS API for Python ArcGIS REST JS
Expand
Use dark colors for code blocks Copy
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
portal = new Portal(); // Default is "https://www.arcgis.com/sharing/rest"
portal.load().then( ()=> {
const query = {
query : "water"
};
portal.queryGroups(query).then( ( response )=> {
console .log(response);
});
});
REST API Request Response
cURL cURL HTTP
Use dark colors for code blocks Copy
1
2
3
curl https://www.arcgis.com/sharing/rest/community/groups \
-d 'q=water' \
-d 'f=pjson'
Use dark colors for code blocks Copy
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
{
"query" : "water" ,
"total" : 3206 ,
"start" : 1 ,
"num" : 10 ,
"nextStart" : 11 ,
"results" : [
{
"id" : "b2e2fce2ab304ff38c27b811b1784b23" ,
"title" : "Wyoming WRDS WDO - Water" ,
Create a new group Define a new group and how it can be accessed.
APIs ArcGIS API for Python ArcGIS API for Python ArcGIS REST JS
Use dark colors for code blocks Copy
1
2
3
4
from arcgis.gis import GIS
gis = GIS(username= "USERNAME" , password= "PASSWORD" )
group = gis.groups.create(title= "Traffic issues" , tags= "traffic" , access= "public" )
print (group)
REST API Request Response
cURL cURL HTTP
Use dark colors for code blocks Copy
1
2
3
4
5
curl https://www.arcgis.com/sharing/rest/community/createGroup \
-d 'title=Traffic issues' \
-d 'access=public' \
-d 'f=pjson' \
-d 'token=<ACCESS_TOKEN>'
Use dark colors for code blocks Copy
1
2
3
4
5
6
7
{ "success" : true ,
"group" : {
"id" : "GROUP_ID" ,
"title" : "Traffic issues" ,
"access" : "public"
}
}
Invite users to a group Invite users by their user names.
APIs ArcGIS API for Python ArcGIS API for Python ArcGIS REST JS
Use dark colors for code blocks Copy
1
2
3
4
5
from arcgis.gis import GIS
gis = GIS(username= "USERNAME" , password= "PASSWORD" )
group = gis.groups.get( "GROUP_ID" )
results = group.invite_users(usernames=[ "USER_TO_INVITE" ])
print (results)
REST API Request Response
cURL cURL HTTP
Use dark colors for code blocks Copy
1
2
3
4
5
6
curl https://www.arcgis.com/sharing/rest/community/groups/<GROUP_ID>/invite \
-d 'users=<USER_TO_INVITE>' \
-d 'role=group member' \
-d 'expiration=20160' \
-d 'f=pjson' \
-d 'token=<ACCESS_TOKEN>'
Use dark colors for code blocks Copy
1
2
3
4
{
"success" : true ,
"groupId" : "GROUP_ID"
}
Add items to a group Add an item to group to be shared with a set of users.
APIs ArcGIS API for Python ArcGIS API for Python ArcGIS REST JS
Use dark colors for code blocks Copy
1
2
3
4
5
from arcgis.gis import GIS
gis = GIS(username= "USERNAME" , password= "PASSWORD" )
item = gis.content.get( "ITEM_ID" )
results = item.share(groups= "GROUP_ID" )
print (results)
REST API Request Response
cURL cURL HTTP
Use dark colors for code blocks Copy
1
2
3
4
curl https://www.arcgis.com/sharing/rest/content/users/<USERNAME>/items/<ITEM_ID>/share \
-d 'f=json' \
-d 'groups=<GROUP_ID>' \
-d 'token=<ACCESS_TOKEN>'
Use dark colors for code blocks Copy
1
2
3
{ "results" : [{ "itemId" : "ITEM_ID" ,
"success" : true ,
"notSharedWith" : []}]} // Groups item not shared with
Search for group content Find items shared with a group using a query.
APIs ArcGIS Maps SDK for JavaScript ArcGIS Maps SDK for JavaScript ArcGIS API for Python ArcGIS REST JS
Expand
Use dark colors for code blocks Copy
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
const portal = new Portal();
portal.url = "https://www.arcgis.com/"
portal.load()
.then( ()=> {
const portalGroup = new PortalGroup({
id : "d6340748701d4ccfb18ad3c42b7feb9e" ,
portal : portal
});
const queryParameters = {
query : "bike"
};
portalGroup.queryItems(queryParameters).then( ( response )=> {
console .log(response);
});
});
REST API Request Response
cURL cURL HTTP
Use dark colors for code blocks Copy
1
2
3
curl https://www.arcgis.com/sharing/rest/content/groups/d6340748701d4ccfb18ad3c42b7feb9e/search \
-d 'q=bike' \
-d 'f=pjson'
Use dark colors for code blocks Copy
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
{
"query" : "bike" ,
"total" : 2 ,
"start" : 1 ,
"num" : 10 ,
"nextStart" : -1 ,
"results" : [
{
"id" : "37695c689cbe4e87aa1877ef12c7bf3b" ,
"owner" : "esri_devlabs" ,
Update properties Change the properties of a group such as the name, description, and permissions.
APIs ArcGIS API for Python ArcGIS API for Python ArcGIS REST JS
Use dark colors for code blocks Copy
1
2
3
4
5
6
from arcgis.gis import GIS
gis = GIS(username= "USERNAME" , password= "PASSWORD" )
group = gis.groups.get( "GROUP_ID" )
results = group.update( "new" ) # new title
print (results)
REST API Request Response
cURL cURL HTTP
Use dark colors for code blocks Copy
1
2
3
4
curl https://www.arcgis.com/sharing/rest/community/groups/GROUP_ID/update \
-d 'title=new' \
-d 'f=pjson' \
-d 'token=<ACCESS_TOKEN>'
Use dark colors for code blocks Copy
1
2
3
4
{
"success" : "true" ,
"groupId" : "GROUP_ID"
}
Tutorials Use tools to create different types of content and build content-driven applications .
Web maps Web scenes Feature layers Vector tile layers Basemap layers Services Store, manage, and access private and public content.
API support Full support Partial support No supportUse tools to access the portal and create and manage content for applications.
Developer dashboard Manage API keys, service usage, and data with the ArcGIS Developers website.
ArcGIS Online Create, manage, and share content and data with cloud-based GIS tools.
Map Viewer Create, explore, and share web maps for 2D applications.
Scene Viewer Create, explore, and share web scenes for 3D applications.
Vector tile style editor Style vector tile basemap layers for applications.
ArcGIS Pro Explore, visualize, and analyze both 2D and 3D data with desktop GIS tools.