Append Features (Network Diagrams)

URL:
https://<root>/<serviceName>/NetworkDiagramServer/diagrams/<diagramName>/appendFeatures
Methods:
POST
Version Introduced:
10.6

Description

The appendFeatures operation appends a set of network elements to a diagram. It is performed on a Diagram resource. The result of this operation is a Diagram JSON Information object, and the moment (date) the operation happens for a stored diagram.

Request Parameters

ParameterDetails

gdbVersion

The name of the geodatabase version.

Syntax: gdbVersion=<version>

Example: gdbVersion=ABV1

sessionId

The token (guid) used to lock the version.

Syntax: sessionId=<guid>

Example: sessionId=44G259DE-87B0-407D-8F2E-DCB7665DD0F0

addedFeatures

(Required) (Required)

An array of network element Global IDs, those network elements being those to append to the diagram.

Syntax: addedFeatures = ["<globalID1>", ...,"<globalIDN>"]

Example: addedFeatures = ["{BAF7AC0F-47CB-479A-A916-827D18890375}"]

f

The response format. The default response format is html.

Values: html | json | pjson

Example Usage

Appending a utility network edge—which Global ID is {BAF7AC0F-47CB-479A-A916-827D18890375}—to the diagram called DiagramTest1; that is:

  • URL: https://myserver.esri.com/server/rest/services/Naperville/NetworkDiagramServer/diagrams/DiagramTest1/appendFeatures

  • Parameters:

    Use dark colors for code blocksCopy
    1
    2
    3
    4
    gdbVersion=
    sessionId=
    addedFeatures= ["{BAF7AC0F-47CB-479A-A916-827D18890375}"]
    f=pjson
  • Sent URL (GET): https://myserver.esri.com/server/rest/services/Naperville/NetworkDiagramServer/diagrams/DiagramTest1/appendFeatures?gdbVersion=&sessionId=&addedFeatures=%5B%22%7BBAF7AC0F-47CB-479A-A916-827D18890375%7D%22%5D&f=pjson

JSON Response Syntax

A JSON object composed of a Diagram JSON Information object and a moment: {"diagramInfo": , "moment": <moment>}

JSON Response Example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
 "diagramInfo": {
  "tag": "",
  "isStored": true,
  "canStore": false,
  "canExtend": true,
  "isSystem": false,
  "creator": "acb7352",
  "creationDate": 1503065870000,
  "lastUpdateBy": "acb7352",
  "lastUpdateDate": 1503066050000,
  "containerMargin": 0.5,
  "junctionCount": 17,
  "edgeCount": 16,
  "containerCount": 3,
  "aggregationCount": 0,
  "isHistorical": false,
  "access": "esriDiagramPublicAccess",
  "diagramExtent": {
   "xmin": 1034221.5694996789,
   "ymin": 1871808.4880382791,
   "xmax": 1034521.7178495117,
   "ymax": 1871863.5430462807,
   "spatialReference": {
    "wkid": 102671,
    "latestWkid": 3435
   }
  },
  "networkExtent": {
   "xmin": 1034222.0694986805,
   "ymin": 1871808.4880382791,
   "xmax": 1034521.2178505138,
   "ymax": 1871863.0430472791,
   "spatialReference": {
    "wkid": 102671,
    "latestWkid": 3435
   }
  },
  "name": "DiagramTest1",
  "id": "{22C1EEB8-1152-440F-B2FF-6B7C6A43076E}",
  "template": "Basic"
 },
 "moment": 1503066050261
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.