Skip To Content
ArcGIS Developer
Dashboard

Site

Description

A site is a collection of server resources. This collection includes server machines that are installed with ArcGIS Server, including GIS services, data and so on. The site resource also lists the current version of the software.

When you install ArcGIS Server on a server machine for the first time, you must create a new site. Subsequently, newer server machines can join your site and increase its computing power. Once a site is no longer required, you can delete the site, which will cause all of the resources to be cleaned up.

The site maintains all its configuration and meta information on disk in a set of files that make up the Configuration Store.

Request parameters

ParameterDescription
f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

Below is a sample request URL for your site:

https://machine.domain.com/webadaptor/admin?f=json

JSON Response syntax

{
  "currentVersion" : "<version>",
  "resources": [ "resource1", "resource2", ...]
}

JSON Response example

{
  "currentVersion": "10.8.1",
  "resources": [
    "clusters",
    "machines",
    "services",
    "security",
    "data",
    "uploads",
    "system",
    "kml",
    "info",
    "publicKey"
  ]
}