/users: Group Users

URL:
https://[root]/community/groups/[groupID]/users
Methods:
GET

Example usage

URL for Group Users

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

Description

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 a rray containing the user names of the administrators of the group.

users

A JSON a rray containing the user names of the members of the group.

JSON Response syntax

1
2
3
4
5
6
7
8
9
10
11
{
  "owner": "<group owner username>",
  "admins": [
    "<admin username1>",
    "<admin username2"
  ],
  "users": [
    "<username1>",
    "<username2>"
  ]
}

JSON Response example

1
2
3
4
5
6
7
8
9
10
11
{
  "owner": "jsmith",
  "admins": [
    "jsmith",
    "pwright"
  ],
  "users": [
    "mjohnson",
    "swilson"
  ]
}

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