- URL:
- https://<root>/<serviceName>/UtilityNetworkServer/circuits/delete
- Methods:
GET
POST
- 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
Parameter | Details |
---|---|
| Specifies the output format of the response. The default response format is
|
(Optional) | Specifies the name of the geodatabase version. The default is 'sde.DEFAULT'. Syntax: |
(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: |
(Required) | Specifies the name of the telecom domain network from which the circuit will be deleted. Syntax: Example: |
(Required) | The names of the circuit or circuits to be deleted. Syntax: Example: |
JSON Response syntax
{
"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.
f=json
gdbVersion=sde.Default
domainNetworkName=Telco
circuits=["A32/T3U/79232211/82256420", "A32/T3U/79234594/44136420"]
JSON response:
```json
{
"success": true
}