| FRAMES | NO FRAMES | Description | Parameters | Examples | Response |
| URL | http://<replication-url>/info |
|---|---|
| Parent Resource | Replication |
| 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 1: URL for the replication info operation in the "Workflow" service on sampleserver.
http://sampleserver/arcgis/rest/services/Workflow/WMServer/replication/info?user=cjones
{
"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>
},
...
]
}
{
"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
}
]
}