Skip To Content
ArcGIS Developer
Dashboard

Administering hosted services

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

ParameterDetails
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"
    } 
  ] 
}