Administering hosted services
- URL:https://<web server hostname>/arcgis/rest/admin/services
- Child Resources:Map Service, Feature Service
Description
The administration resource is the root node and initial entry point into the administrative interface for your ArcGIS Online or ArcGIS Enterprise hosted services. This resource represents a catalog of services published on the host.
Parameters
Parameter | Details |
---|---|
f | Description: The response format. The default response format is html. Values: html | json | pjson |
Example Usage
https://sampleserver10.arcgisonline.com/arcgis/rest/admin
JSON Response Syntax
{
"services" : [
{
"adminServiceInfo" :
{
"name" : "Highways",
"type" : "FeatureServer",
"status" : "Started",
"maxRecordCount" : 500
},
"serviceDescription" : "Description of Highways Service"
},
{
"adminServiceInfo" :
{
"name" : "Rivers",
"type" : "MapServer",
"status" : "Started",
"maxRecordCount" : 500
},
"serviceDescription" : "Description of Rivers Service"
}
]
}