- URL:https://<root-url>/services
- Child Resources:Create Mission Service
- Version Introduced:11.0
Description
The Services resource provides service resources and operations related to ArcGIS Mission Server.
Request parameters
Parameter | Details |
---|---|
f | The response format. The default response format is html. Values: html | json | pjson |
Response Properties
Property | Details |
---|---|
folders | An array of folders. |
services | An array of services. Each service provides its name and service type |
Example usage
Below is a sample request URL for the services resource:
https://machine.domain.com/webadaptor/rest/services?f=pjson
JSON Response example
{
"total": 4,
"folders": [],
"num": 100,
"start": 1,
"nextStart": -1,
"services": [
{
"name": "76c73af756344a0ebbb34489c5453a5f",
"type": "MissionServer",
"title": "Mission"
},
{
"name": "902f10461dbf42a4b27e9df9275f48cb",
"type": "MissionServer",
"title": "Area Security"
},
{
"name": "afa50410d40448d6ba09429645caff40",
"type": "MissionServer",
"title": "Fire Response"
}
]
}