Server Info

URL:
https://<host>/<instance>/rest/info
Methods:
GET
Version Introduced:
10.0

Description

The ServerInfo resource provides general information about the server (for example, the current version of the server), as well as information on whether the server is secured using token-based authentication; and the token services URL (if token-based authentication is used). At 10.1 and later, when the server is secured using token-based authentication, the shortLivedTokenValidity property is returned. The value returned for this property represents the validity of short-lived tokens in minutes.

Request parameters

ParameterDetails

f

Description: The response format. The default response format is html.

Values: html | json | pjson

Example usage

1
https://machine.domain.com/webadaptor/rest/info?f=pjson

JSON Response syntax

1
2
3
4
5
6
7
8
9
10
11
12
{
"currentVersion": <currentVersion>,
"fullVersion": "<fullVersion>", //Added in 10.1 - returns version information as a String
"soapUrl": "<soapUrl>",
"secureSoapUrl": <soapSslUrl>,
"owningSystemUrl": "<owningSystemUrl>", //Added in 10.1 SP1
"authInfo" : {
    "isTokenBasedSecurity" : <true | false>,
    "tokenServicesUrl" : "<tokenServiceUrl>", //sent only if isTokenBasedSecurity = "true"
     "shortLivedTokenValidity" : <shortLivedTokenValidity> //Added in 10.1. Sent only if isTokenBasedSecurity = "true"
  }
}

JSON Response example

1
2
3
4
5
6
7
8
9
10
11
12
{
"currentVersion": 10.1,
"fullVersion": "10.1",
"soapUrl": "https://myserver.mydomain.com/arcgis/services",
"secureSoapUrl": "https://server/arcgis/services",
"owningSystemUrl": "https://www.arcgis.com",
"authInfo" : {
    "isTokenBasedSecurity" : true,
    "tokenServicesUrl" : "https://myserver.mydomain.com/arcgis/tokens",
	"shortLivedTokenValidity" :60
  }
}

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

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close