Trace Configurations

URL:
https://<root>/<serviceName>/UtilityNetworkServer/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 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.

1
f=html | json | pjson

JSON Response syntax

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

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.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close