Skip to content
URL:
https://organization.example.com:21443/arcgis/rest
Methods:
GET
Operations:
Analyze
Child Resources:
Info, Self, Jobs, Uploads, Services, Stores
Version Introduced:
12.0

Description

This is the root resource of the ArcGIS Video Server services directory.

Request parameters

ParameterDetails

f

The response format. The default response format is html.

Values: html | json | pjson

Response properties

PropertyDetails

owningSystemUrl

The URL of the portal ArcGIS Video Server is federated with.

fullVersion

The version of ArcGIS Video Server being run in the deployment, with a patch number.

currentVersion

The version of ArcGIS Video Server being run in the deployment, without a patch number.

authInfo

The authInfo JSON object contains two properties: tokenServicesUrl and isTokenBasedSecurity. The tokenServicesUrl property returns the full URL for the generateToken operation. The isTokenBasedSecurity specifies whether token-based security is enabled (true or false).

Example usage

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

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

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
{
    "owningSystemUrl": "https://organization.example.com/portal",
    "fullVersion": "Version with Patch",
    "currentVersion": "Version without Patch",
    "authInfo": {
        "tokenServicesUrl": "https://organization.example.com/portal/sharing/rest/generateToken",
        "isTokenBasedSecurity": "< true | false>"
    }
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
{
    "owningSystemUrl": "https://organization.example.com/portal",
    "fullVersion": "12.0.0",
    "currentVersion": 12.0,
    "authInfo": {
        "tokenServicesUrl": "https://organization.example.com/portal/sharing/rest/generateToken",
        "isTokenBasedSecurity": true
    }
}

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