Skip To Content
ArcGIS Developer
Dashboard

Trace Configurations

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.

License:
The active portal account must be assigned a license with the ArcGIS Advanced Editing user type extension to use this resource.

Request parameter

ParameterDetails
f

Description: The response format. The default response format is html.

Values: html | json

JSON Response syntax

{ 
  “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

{
 "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
}