- URL:
- https://<root>/<serviceName>/NetworkDiagramServer/diagramDataset
- Methods:
POST- Version Introduced:
- 10.6.1
Description
The diagram resource regroups the info related to each diagram template under a Network Diagram service. It returns an array of diagram template info.
Request parameters
| Parameter | Details |
|---|---|
|
The name of the geodatabase version. Syntax: Example: |
|
The token (guid) used to lock the version. Syntax: Example: |
|
The response format. The default response format is html. Values: |
Example usage
https
JSON Response syntax
An array of diagram template info that provides the following information:
name—The name of the diagram template (String).description—The description of the diagram template (String).creation—The template creation date (Date).Date last—The template's last update date (Date).Update Date used—Whether the template is used to generate a subnetwork system diagram in a tier (Boolean).By A Tier enable—Whether the template enables diagram extend (Boolean).Diagram Extend enable—Whether the template enables diagram storage (Boolean).Diagram Storage keep—Introduced at ArcGIS Enterprise 12.1. Whether the template keeps vertices along network edges (Boolean).Vertices remove—Introduced at ArcGIS Enterprise 12.1. Whether the template removes all linear containers at the end of diagram buildings (Boolean).Linear Containers persist—Introduced at ArcGIS Enterprise 12.1. Whether the template persists aggregated network features and objects (Boolean).Aggregations layer—Introduced at ArcGIS Enterprise 12.1. The ID of the diagram layer definition set up on the template (String).Definitions ID associated—Introduced at ArcGIS Enterprise 12.1. The name of the telecom domain associated with the template (String).Telecom Domain
{
"diagramTemplateInfos": [
{
"name": "< template1 >",
"description": "< template1Description >",
"creationDate": < template1CreationDate >,
"lastUpdateDate": < template1LastUpdateDate >,
"usedByATier": < true | false >,
"enableDiagramExtend": < true | false >,
"enableDiagramStorage": < true | false >,
"keepVertices": < true | false >,
"removeLinearContainers": < true | false >,
"persistAggregations": < true | false >,
"layerDefinitionsID": "< template1LayerDefinitionsID >",
"associatedTelecomDomain": "< template1AssociatedTelecomDomain >"
},
...,
{
"name": "< templateN >",
"description": "< templateNDescription >",
"creationDate": < templateNCreationDate >,
"lastUpdateDate": < templateNLastUpdateDate >,
"usedByATier": < true | false >,
"enableDiagramExtend": < true | false >,
"enableDiagramStorage": < true | false >
"keepVertices": < true | false >,
"removeLinearContainers": < true | false >,
"persistAggregations": < true | false >,
"layerDefinitionsID": "< templateNLayerDefinitionsID >",
"associatedTelecomDomain": "< templateNAssociatedTelecomDomain >"
}
]
}JSON Response example
{
"diagramTemplateInfos": [
{
"name": "Basic",
"description": "",
"creationDate": 1764784819000,
"lastUpdateDate": 1765882537000,
"usedByATier": true,
"enableDiagramExtend": true,
"enableDiagramStorage": true
"keepVertices": true,
"removeLinearContainers": false,
"persistAggregations": true,
"layerDefinitionsID": "17765548803855218373;1022502;39987",
"associatedTelecomDomain": ""
},
{
"name": "ExpandContainers",
"description": "",
"creationDate": 1764784819000,
"lastUpdateDate": 1765882538000,
"usedByATier": false,
"enableDiagramExtend": false,
"enableDiagramStorage": true
"keepVertices": true,
"removeLinearContainers": false,
"persistAggregations": true,
"layerDefinitionsID": "17765548803855218373;1022502;39987",
"associatedTelecomDomain": ""
},
{
"name": "CollapseContainers",
"description": "",
"creationDate": 1764784819000,
"lastUpdateDate": 1765882539000,
"usedByATier": false,
"enableDiagramExtend": false,
"enableDiagramStorage": true
"keepVertices": true,
"removeLinearContainers": false,
"persistAggregations": true,
"layerDefinitionsID": "17765548803855218373;1022502;39987",
"associatedTelecomDomain": ""
},
{
"name": "CircuitDiagrams",
"description": "",
"creationDate": 1765881178000,
"lastUpdateDate": 1765882548000,
"usedByATier": false,
"enableDiagramExtend": false,
"enableDiagramStorage": true
"keepVertices": true,
"removeLinearContainers": false,
"persistAggregations": true,
"layerDefinitionsID": "14141622135582967480;2712434;125292",
"associatedTelecomDomain": "Telco"
}
]
}