/groups (item): Groups

URL:
https://[root]/content/items/[itemID]/groups
Methods:
GET
Version Introduced:
ArcGIS Online December 2012

Example Usage

URL for Groups

1
https://www.arcgis.com/sharing/rest/content/items/af01df44bf36437fa8daed01407138ab/groups

Description

Lists the groups of which the item is a part. Only shows the groups that the calling user can access.

Request Parameters

ParameterDetails

[Common Parameters]

For a complete listing, see Common parameters.

Response Properties

PropertyDetails

admin

Groups which user is an administrator. This is a JSON Array of group objects. See Group for possible response properties.

member

Groups which user is a member.

other

Other groups that are public or shared to the user's organization but that the user is not a member of.

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
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
{
"admin":[{
  "id": "<group id>",
  "title": "<group title>",
  "isInvitationOnly": true |false,
  "owner": "<group owner username>",
  "description": "<description>",
  "snippet": <summary>,
  "tags": [
    "<tag1>",
    "<tag2>",
    "<tag3>"
  ],
  "phone": contact,
  "thumbnail": file name,
  "created": date created shown in UNIX time,
  "modified": date modified shown in UNIX time,
  "access": private | org | public,
  "userMembership": {   //available only if request is made by an authenticated user
    "username": "<requestor username>",
    "memberType": "owner | member |admin | none",
    "applications": number of applications  //available only to admins and owners
  }
}],
"member":[
{ "id": "<group id>",
  "title": "<group title>",
  "isInvitationOnly": true |false,
  "owner": "<group owner username>",
  "description": "<description>",
  "snippet": <summary>,
  "tags": [
    "<tag1>",
    "<tag2>",
    "<tag3>"
  ],
  "phone": contact,
  "thumbnail": file name,
  "created": date created shown in UNIX time,
  "modified": date modified shown in UNIX time,
  "access": private | org | public,
  "userMembership": {   //available only if request is made by an authenticated user
    "username": "<requestor username>",
    "memberType": "owner | member |admin | none",
    "applications": number of applications  //available only to admins and owners
  }
}],
"other":[
{  "id": "<group id>",
  "title": "<group title>",
  "isInvitationOnly": true |false,
  "owner": "<group owner username>",
  "description": "<description>",
  "snippet": <summary>,
  "tags": [
    "<tag1>",
    "<tag2>",
    "<tag3>"
  ],
  "phone": contact,
  "thumbnail": file name,
  "created": date created shown in UNIX time,
  "modified": date modified shown in UNIX time,
  "access": private | org | public,
  "userMembership": {   //available only if request is made by an authenticated user
    "username": "<requestor username>",
    "memberType": "owner | member |admin | none",
    "applications": number of applications  //available only to admins and owners
  }
}]
}

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
{
"admin":[{
  "id": "2ecb37a8c8fb4051af9c086c25503bb0",
  "title": "Street Maps",
  "isInvitationOnly": false,
  "owner": "jsmith",
  "description": "The street maps group provides street maps for the city of Redlands.",
  "snippet": null,
  "tags": [
    "Redlands",
    "Street",
    "Maps"
  ],
  "phone": https://www.esri.com,
  "thumbnail": "streets.jpg",
  "created": 1247082196000,
  "modified": 1276793808000,
  "access": "public",
  "userMembership": {
    "username": "jsmith",
    "memberType": "owner",
    "applications": 1
  }
}],
"member":[{
  "id": "bf51aa6e879e4676b683dcbefb0ab0a9",
  "title": "Parks and Recreation",
  "isInvitationOnly": true,
  "owner": "swilson",
  "description": "The Parks and Recreation group contains maps and applications used by the Parks Department.",
  "snippet": null,
  "tags": [
    "Redlands",
    "Parks",
    "Recreation"
  ],
  "phone": https://www.esri.com,
  "thumbnail": "parks.jpg",
  "created": 1247082197000,
  "modified": 1276793919000,
  "access": "private",
  "userMembership": {
    "username": "jsmith",
    "memberType": "member",
  }
}],
"other":[{
  "id": "dbc385ac1b7d4231b24b97750f0e633c",
  "title": "Featured Maps and Apps",
  "isInvitationOnly": true,
  "owner": "city_redlands",
  "description": "These items are featured on the gallery page.",
  "snippet": null,
  "tags": [
     "gallery",
      "Featured Maps",
      "Featured Apps"
    ],
    "phone": https://www.esri.com,
    "thumbnail": "gallery.jpg",
    "created": 1327099662000,
    "modified": 1327099662000,
    "access": "public",
    "userMembership": {
      "username": "jsmith",
      "memberType": "none"
    }
  }]
}

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