Skip To Content
ArcGIS Developer
Dashboard

/users: Group Users

  • URL:https://[root]/community/groups/[groupID]/users

Example usage

URL for Group Users

https://www.arcgis.com/sharing/rest/community/groups/2ecb37a8c8fb4051af9c086c25503bb0/users

Description

Note:

This operation has been deprecated in ArcGIS Online and ArcGIS Enterprise 10.7.1. Users should instead use the Group Users List operation.

Lists the users, owner, and administrators of a given group. Only available to members or administrators of the group.

Request parameters

ParameterDetails
[Common Parameters]

For a complete listing, see Common parameters.

Response properties

PropertyDetails
owner

The user name of the owner of the group.

admins

A JSON array containing the user names of the administrators of the group.

users

A JSON array containing the user names of the members of the group.

JSON Response syntax


            {
  "owner": "<group owner username>",
  "admins": [
    "<admin username1>",
    "<admin username2"
  ],
  "users": [
    "<username1>",
    "<username2>"
  ]
}

JSON Response example


            {
  "owner": "jsmith",
  "admins": [
    "jsmith",
    "pwright"
  ],
  "users": [
    "mjohnson",
    "swilson"
  ]
}