Skip To Content
ArcGIS Developer
Dashboard

Validate Server

Description

This operation provides status information about a specific ArcGIS Server federated with Portal for ArcGIS, returning its status and accessibility information. The response will also return failure messages for any failed validation checks. Starting at ArcGIS Enterprise 11.1, this operation's response includes the adminUrl property, which specifies the administrative URL for the federated server.

Request parameters

ParameterDetails
f

The response format. The default is html.

Values: html | json | pjson

Example usage

Below is a sample request URL for validate:

https://machine.domain.com/webadaptor/portaladmin/federation/servers/FfURK2ysFiMjzDkJ/validate?f=json

Response values

The following list outlines the possible status values included in the operation's response:

  • success
  • success with warnings - This response was added at ArcGIS Enterprise 10.6.1.
  • failure
  • undetermined

JSON Response example


{
  "status": "success",
  "serverId": "msiDXvjfAgzx8wwM",
  "messages": [
    "ArcGIS Server administration URL 'https://gisserver.domain.com:6443/arcgis' is accessible.",
    "ArcGIS Server 'https://gisserver.domain.com:6443/arcgis' version is compatible with Portal for ArcGIS."
  ],
  "adminUrl":"https://gisserver.domain.com:6443/arcgis"
}