Skip To Content
ArcGIS Developer
Dashboard

Trace Configurations

Description

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

Request parameters

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.

Request URL and JSON response:

https://myserver.esri.com/server/rest/services/Landbase/TraceNetworkServer/traceConfigurations

{
 "traceConfigurations": [
  {
   "name": "Connected_basic",
   "globalId": "{TY7F4227-PA80-4CA5-B5UU-58H58ABDD43E}",
   "creator" : "tnadmin"
  },
  {
   "name": "Upstream_allowIndeterminate",
   "globalId": "{P90BB9FD-8H39-45E5-A6C7-D67E69EB3076}",
   "creator" : "joe"
  }
 ],
 "success": true
}