Skip To Content
ArcGIS Developer
Dashboard

applications: Group Applications

  • URL:https://[root]/community/groups/[groupID]/applications
  • Child Resources:Application

Example Usage

URL for Group Applications

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

Description

Lists the group applications for the given group. Available to administrators of the group or administrators of an organization if the group is part of one.

Request Parameters

ParameterDetails
[Common Parameters]

For a complete listing, see Common parameters.

Response Properties

PropertyDetails
applications

A JSON array of application objects. See Group Application for property information.

JSON Response Syntax


            {
  "applications": [
    {
      "username": "<username1>",
      "fullname": "<first name> <last name>",
      "received": date received shown in UNIX time
    },
    {
      "username": "<username2>",
      "fullname": "<first name> <last name>",
      "received": date received shown in UNIX time
    }
  ]
}

JSON Response Example


            {
  "applications": [
    {
      "username": "mjohnson",
      "fullname": "Mary Johnson"
      "received": 1230070327000
    },
    {
      "username": "swilson",
      "fullname": "Sam Wilson"
      "received": 1230069187000
    }
  ]
}