Skip to content
URL:
https://<root>/info/healthcheck
Methods:
GET
Version Introduced:
12.0

Description

The healthcheck operation outputs a boolean based upon whether the health check passes or not. If the health check fails, it will output an error message.

Request parameters

ParameterDetails

f

(Required)

The output format for this operation. The default value is html.

Values: html | json | pjson

token

(Required)

Users interacting programmatically with this endpoint must generate a token that must be included as a request parameter. A token can be obtained using the Generate Token operation.

Response properties

PropertyDetails

success

Outputs the results of the Health Check operation. If healthy, it will say that the site is ready and the check was successful.

Values: true | false

Example usage

The following is a sample request URL used to access the healthCheck resource:

Use dark colors for code blocksCopy
1
https://organization.example.com:21443/arcgis/rest/info/healthcheck?f=pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
{
  "success": "<true | false>"
  }

JSON Response example

Use dark colors for code blocksCopy
1
2
3
{
  "success": "true"
  }

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.