FRAMES | NO FRAMES Description | Parameters | Examples | Response
Community
URL http://<wmservice-url>/community
Supported Operations Create User  Create Group
Parent Resource Workflow Manager (Classic) Service
Child Resources Users  Groups

Description

Represents user community in the ArcGIS Workflow Manager (Classic) 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 table relationships in the "Workflow" service on sampleserver.

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

JSON Response Syntax

{
  "tableRelationships": [
    {
      "tableName": "<tableName1>",
      "tableAlias": "<tableAlias1>",
      "linkField": "<linkField1>",
      "cardinality": <cardinality1>  // Valid values: 1 (one-to-one), 2 (one-to-many)
    },
    {
      "tableName": "<tableName2>",
      "tableAlias": "<tableAlias2>",
      "linkField": "<linkField2>",
      "cardinality": <cardinality2>
    },
    ...
  ]
}

JSON Response Example

{
  "tableRelationships": [
    {
      "tableName": "JTXX_QAQC_STATUS",
      "tableAlias": "JTXX_QAQC_STATUS",
      "linkField": "JOB_ID",
      "cardinality": 1
    },
    {
      "tableName": "JTXX_RELATED_CUSTOMERS",
      "tableAlias": "JTXX_RELATED_CUSTOMERS",
      "linkField": "JOB_ID",
      "cardinality": 2
    },
  ]
}