Trace Configurations

URL:
https://<root>/<serviceName>/UtilityNetworkServer/traceConfigurations
Methods:
GETPOST
Required Capability:
Requires the ArcGIS Advanced Editing user type extension license
Version Introduced:
10.9

Description

The traceConfigurations resource provides access to all trace configuration operations for a utility network. It is returned as an array of named trace configurations with the creator, name, and global ID for each.

Request parameter

ParameterDetails

f

The response format. The default response format is html.

Values: html | json | pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
{
  “traceConfigurations” : [
    {
      “name” : <string>,
      “globalId” : <guid>,
      “creator” : <string>
    }
  ]
}

Example usage

The traceConfigurations resource is an array of objects with each object corresponding to a named trace configuration.

The following are an example request URL and JSON response:

https://myserver.esri.com/server/rest/services/LandUse/UtilityNetworkServer/traceConfigurations

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
 "traceConfigurations": [
  {
   "name": "Connected_default",
   "globalId": "{BD3F4817-9A00-41AC-B0CC-58F78DBAE0A1}",
   "creator" : "unadmin"
  },
  {
   "name": "Upstream Protected RMT002",
   "globalId": "{F93DB9FD-6F39-45D9-A6C7-D43E69EB3076}",
   "creator" : "larry"
  }
 ],
 "success": true
}

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