- URL:
- https://<root>/services/deleteServices
- Methods:
POST
- Required Capability:
- Access allowed with any authorized privilege
- Version Introduced:
- 10.7.1
Description
The delete
operation deletes the specified services on all reachable server machines that are part of the site. This operation requires three properties: the folder name the service is located in (if applicable), the service's name, and the service type. If the service resides in the root folder, leave the folder property blank ("folder
). When a service is deleted, the service is stopped, and all resources and configurations associated with the service are deleted.
Request parameters
Parameter | Details |
---|---|
| The folder name, service name, and type of service being started in JSON format. See the service properties table below. |
| The response format. The default response format is Values: |
Service properties
Property | Details |
---|---|
| The name of the folder containing the service. If the service resides in the root folder, leave the folder property blank ( Example
|
| The name of the service. Example
|
| The service type. Example
|
Example usage
The following is a sample POST request for the delete
operation:
POST /webadaptor/admin/services/deleteServices HTTP/1.1
Host: machine.domain.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []
{
services=[{
"folderName": "",
"serviceName": "SampleWorldCities",
"type": "MapServer"
},
{
"folderName": "Planning",
"serviceName": "FireHydrants",
"type": "FeatureServer"
}]}&f=json
JSON Response example
{"status": "success"}