Trace Configurations

URL:
https://<root>/<serviceName>/TraceNetworkServer/traceConfigurations
Methods:
GETPOST
Operations:
Alter, Create, Delete, Query
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 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

The response format. The default response format is html.

Use dark colors for code blocksCopy
1
f=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.

Request URL and JSON response:

https://myserver.esri.com/server/rest/services/Landbase/TraceNetworkServer/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_basic",
   "globalId": "{TY7F4227-PA80-4CA5-B5UU-58H58ABDD43E}",
   "creator" : "tnadmin"
  },
  {
   "name": "Upstream_allowIndeterminate",
   "globalId": "{P90BB9FD-8H39-45E5-A6C7-D67E69EB3076}",
   "creator" : "joe"
  }
 ],
 "success": true
}

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