Description
The trace 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
| Parameter | Details | 
|---|---|
| 
 | The response format. The default response format is   | 
JSON Response syntax
{
  “traceConfigurations” : [
    {
      “name” : <string>,
      “globalId” : <guid>,
      “creator” : <string>
    }
  ]
}Example usage
The trace 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:
{
 "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
}