Skip to content
URL:
https://<root>/system/licenses
Methods:
GET
Version Introduced:
12.0

Description

The licenses resource lists the current license level of ArcGIS Video Server and all authorized extensions.

Request parameters

ParameterDetails

byMachine

(Optional)

Divides the output by associating licenses with different machines. By default this is false and does not need to be included in the GET request if not desired.

Values: true | false

f

(Required)

The response format. The default response format 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.

Example usage

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

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/admin/system/licenses?f=pjson&byMachine=false

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
{
  "features": {
    "expirationString": "<expiration>",
    "displayName": "<License Name>",
    "isValid": true|false,
    "name": "<edition>",
    "version": "<version>",
    "coreCount": "<cores used>",
    "canExpire": true|false,
    "expiration": <expiration> //MILLISECONDS SINCE EPOCH
  }
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{"features": [
    {
        "expirationString": "Wed Oct 21 00:00:00 EDT 2026",
        "displayName": "ArcGIS GIS Server Advanced",
        "isValid": true,
        "name": "esriServerLicenseAdvanced",
        "expiration": 1792555200000,
        "canExpire": true,
        "coreCount": 4,
        "version": "12.0.0"
    },
    {
        "expirationString": "Wed Oct 21 00:00:00 EDT 2026",
        "displayName": "ArcGIS Video Server",
        "isValid": true,
        "name": "esriServerVideo",
        "expiration": 1792555200000,
        "canExpire": true,
        "coreCount": 0,
        "version": "12.0.0"
    }
  ]
}

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