Skip To Content
ArcGIS Developer
Dashboard

Validate Servers

Description

This operation returns information on the status of ArcGIS Server registered with Portal for ArcGIS.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

Below is a sample request URL for validate:

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

Response values

Possible status responses include:

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

JSON Response example

{
  "status": "success",
  "serversStatus": [
    {
      "status": "success",
      "serverId": "iSoD09CM73gOtmu9",
      "messages": [
        "ArcGIS Server admin url 'https://gisserver.domain.com:6443/arcgis' is reachable and version matches with Portal for ArcGIS.",
        "Validating hosted server.",
        "Verified that server has a registered managed EGDB database '/enterpriseDatabases/AGSDataStore_ds_ehj36189'.",
        "The server managed EGDB 'enterpriseDatabases/AGSDataStore_ds_ehj36189' validated successfully.",
        "Validated that the ArcGIS Server site mode is not read-only."
      ]
    }
  ]
}