FRAMES | NO FRAMES Description | Parameters | Examples | Response
Groups
URL http://<wmservice-url>/community/groups
Parent Resource Workflow Manager Service
Child Resources Group

Description

Represents a list of all the user groups that are configured in the ArcGIS Workflow Manager system.

Parameters

Parameter Details
f Description: The response format. The default response format is html.

Values: html | json

Example Usage

Example 1: URL for the groups in the "Workflow" service on sampleserver.

http://sampleserver/arcgis/rest/services/Workflow/WMServer/community/groups

JSON Response Syntax

{
  "groups": [
    {
      "id": <groupId1>,
      "name": "<groupName1>",
      "description": "<description1>",
      "users": [
        "<userName11>",
        "<userName12>",
        ...
      ]
    },
    {
      "id": <groupId2>,
      "name": "<groupName2>",
      "description": "<description2>",
      "users": [
        "<userName21>",
        "<userName22>",
        ...
      ]
    },
    ...
  ]
}

JSON Response Example

{
  "groups": [
    {
      "id": 1,
      "name": "GIS Analysts",
      "description": "Data editors and cartographic analysts",
      "users": [
        "amiller",
        "cjones"
      ]
    },
    {
      "id": 2,
      "name": "QA/QC",
      "description": "Quality assurance specialists",
      "users": [
        "cjones"
      ]
    }
  ]
}