- URL:https://<tracenetworkservice-url>/traceConfigurations
 - Operations:Alter , Create, Delete , Query
 - Version Introduced:10.9
 
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
| Parameter | Details | 
|---|---|
| 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
}