FRAMES | NO FRAMES Description | Parameters | Examples | Response
Administration
URL http://<host>/<instance>/admin
Child Resources Datasources  Services

Description

The administration resource is the root node and initial entry point into a Spatial Data Server adminstrative interface. This resource represents a catalog of data sources and services published on the host.

The current version and type of the server is also returned in the response. The value of the version is a number such that its value at a future release is guaranteed to be greater than its value at a previous release.  

Parameters

Parameter Details
f Description: The response format. The default response format is html.

Values: html | json | pjson

Example Usage

http://sampleserver10.arcgisonline.com/arcgis/admin

JSON Response Syntax

{
  "currentVersion": <currentVersion>,
  "resources" : [
    "datasources", 
    "services"
  ], 
  "serverType" : ".NET SDS | Java SDS"
}

JSON Response Example

{
  "currentVersion" : "10.1", 
  "resources" : [
    "datasources", 
    "services"
  ], 
  "serverType" : ".NET SDS"
}