Skip To Content
ArcGIS Developer
Dashboard

/[applicationUsername]/accept: Accept Group Application

  • URL:https://[root]/community/groups/[groupID]/applications/[applicationUsername]/accept(POST only)

Example Usage

URL for Accept Group Application:

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

Description

When a user applies to join a group, a group application is created. Group administrators choose to accept this application using the Accept Group Application operation (POST only). This operation adds the applying user to the group then deletes the application. This operation also creates a notification for the user indicating that the user's group application was accepted. Available only to group owners and admins.

Request Parameters

ParameterDetails
[Common Parameters]

For a complete listing, see Common parameters.

Response Properties

PropertyDetails
success

Indicates if the operation was successful.

username

The username of the user being accepted into the group.

groupId

The group ID of the group that accepted the user's application.

JSON Response Syntax


            {
  "success": true | false,
  "username": "<username>",
  "groupId": "<group id>"
}

JSON Response Example


            {
  "success": true,
  "username": "mjohnson",
  "groupId": "2ecb37a8c8fb4051af9c086c25503bb0"
}