Delete (Circuits)

URL:
https://<root>/<serviceName>/UtilityNetworkServer/circuits/delete
Methods:
GETPOST
Version Introduced:
11.x5

The delete operation on the circuits resource allows you to logically delete one or more circuits in a telecom domain network.

Request parameters

ParameterDetails

f

Specifies the output format of the response. The default response format is html.

Use dark colors for code blocksCopy
1
f=html | json | pjson

gdbVersion

(Optional)

Specifies the name of the geodatabase version. The default is 'sde.DEFAULT'.

Syntax: gdbVersion=<version>

sessionId

(Optional)

Specifies the token (guid) used to lock the version. If a client has previously started an edit session and holds an exclusive lock on the version specified, the request will fail if the sessionId is not provided. If the specified version is currently locked by any other session, the request will fail if the sessionId is not provided or does not match the sessionId that holds the exclusive lock.

Syntax: sessionId=<guid>

domainNetworkName

(Required)

Specifies the name of the telecom domain network from which the circuit will be deleted.

Syntax: domainNetworkName=<string>

Example: domainNetworkName=Telco

circuits

(Required)

The names of the circuit or circuits to be deleted.

Syntax: circuits=[<string>]

Example: circuits=["CircuitA","CircuitB"]

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "success" : <boolean>,
  "error" : {                   // only if success is false
    "extendedCode" : <HRESULT>,
    "message" : <string>,
    "details" : [ <string> ]
  }
}

Example usage

Request URL and parameters:

https://myserver.esri.com/server/rest/services/Telco/UtilityNetworkServer/circuits/delete

Use the delete operation to delete two circuits named A32/T3U/79232211/82256420 and A32/T3U/79234594/44136420 in a telecom domain network named Telco.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13

f=json
gdbVersion=sde.Default
domainNetworkName=Telco
circuits=["A32/T3U/79232211/82256420", "A32/T3U/79234594/44136420"]


JSON response:

```json
{
	"success": true
}

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