- URL:
- https://[root]/community/groups/[groupID]/users
- Methods:
- GET
Example usage
URL for Group Users
https://www.arcgis.com/sharing/rest/community/groups/2ecb37a8c8fb4051af9c086c25503bb0/usersDescription
Lists the users, owner, and administrators of a given group. Only available to members or administrators of the group.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | For a complete listing, see Common parameters. | 
Response properties
| Property | Details | 
|---|---|
| 
 | The user name of the owner of the group. | 
| 
 | A JSON a rray containing the user names of the administrators of the group. | 
| 
 | A JSON a rray 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"
  ]
}