FRAMES | NO FRAMES Description | Parameters | Examples | Response
Replication Info (Operation)
URL http://<replication-url>/info
Parent Resource Replication

Description

Returns a list of the replication nodes 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
user Required
Description: The username of the client.

Example Usage

Example 1: URL for the replication info operation in the "Workflow" service on sampleserver.

http://sampleserver/arcgis/rest/services/Workflow/WMServer/replication/info?user=cjones

JSON Response Syntax

{
  "nodes": [
    {
      "id": <nodeId1>,
      "name": "<nodeName1>",
      "description": "<description1>",
      "serverURL": "<url1>",
      "isParent": <true | false>,
      "isConnected": <true | false>,
      "lastSync": <timestamp1>
    },
    {
      "id": <nodeId2>,
      "name": "<nodeName2>",
      "description": "<description2>",
      "serverURL": "<url2>",
      "isParent": <true | false>,
      "isConnected": <true | false>,
      "lastSync": <timestamp2>
    },
    ...
  ]
}

JSON Response Example

{
  "nodes": [
    {
      "id": 1,
      "name": "primary",
      "description": "Headquarters office",
      "serverURL": "http://hqserver:8399/arcgis/rest/services/Workflow/WMServer",
      "isParent": true,
      "isConnected": false,
      "lastSync": 1230768000000
    },
    {
      "id": 2,
      "name": "secondary",
      "description": "Remote office",
      "serverURL": "http://fieldoffice:8399/arcgis/rest/services/WorkflowReplica/WMServer",
      "isParent": false,
      "isConnected": true,
      "lastSync": 1230768000000
    }
  ]
}