/users: Group Users

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

Example usage

URL for Group Users

Use dark colors for code blocksCopy
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

Use dark colors for code blocksCopy
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

Use dark colors for code blocksCopy
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.