Licenses

URL:
https://<notebookserveradmin>/licenses
Methods:
GET
Required Capability:
Administrator or Create and Edit
Version Introduced:
10.7

Description

This resource displays the current license of the ArcGIS Notebook Server site. Contact Esri Customer Service if you have questions about your license or its expiration.

Request parameters

ParameterDetails

byMachine

Optional parameter to return license information for each machine in the ArcGIS Notebook Server site.

Values: true | false

f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

Use dark colors for code blocksCopy
1
2
3
https://gisserver.domain.com:11443/arcgis/admin/licenses
byMachine=true
f=json

JSON Response syntax (default)

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
{"features": [
    {
    "expirationString": "<expiration string>",
    "displayName": "<displayName>",
    "isValid": true|false,
    "name": "<name>",
    "expiration": 'epoch time in milliseconds',
    "canExpire": true|false,
    "coreCount": 'count',
    "version": "<version>"
}]}

JSON Response syntax when byMachine=true

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
24
25
26
27
28
29
30
{"machines": [
    {
        "features": [{
    "expirationString": "<expiration string>",
    "displayName": "<displayName>",
    "isValid": true|false,
    "name": "<name>",
    "expiration": 'epoch time in milliseconds',
    "canExpire": true|false,
    "coreCount": 'count',
    "version": "<version>"
}],
        "version": <version>,
        "machineName": "MACHINE1.DOMAIN.COM"
    },
   {
        "features": [{
    "expirationString": "<expiration string>",
    "displayName": "<displayName>",
    "isValid": true|false,
    "name": "<name>",
    "expiration": 'epoch time in milliseconds',
    "canExpire": true|false,
    "coreCount": 'count',
    "version": "<version>"
}],
        "version": <version>,
        "machineName": "MACHINE2.DOMAIN.COM"
    }
]}

JSON Response example (default)

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
{"features": [
    {
        "expirationString": "Wed Oct 20 00:00:00 PDT 2021",
        "displayName": "ArcGIS Notebook Server Standard",
        "isValid": true,
        "name": "esriServerNoteBooksStandard",
        "expiration": 1634713200000,
        "canExpire": true,
        "coreCount": 0,
        "version": "10.9.0"
    }
]}

JSON Response example when byMachine=true

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
24
25
26
27
28
29
30
{"machines": [
    {
        "features": [{
            "expirationString": "Tue Oct 20 00:00:00 PDT 2020",
            "displayName": "ArcGIS Notebook Server Standard",
            "isValid": true,
            "name": "esriServerNoteBooksStandard",
            "expiration": 1603177200000,
            "canExpire": true,
            "coreCount": 0,
            "version": "10.8.1"
        }],
        "version": 108,
        "machineName": "MACHINE1.DOMAIN.COM"
    },
    {
        "features": [{
            "expirationString": "Tue Oct 20 00:00:00 PDT 2020",
            "displayName": "ArcGIS Notebook Server Advanced",
            "isValid": true,
            "name": "esriServerNoteBooksAdvanced",
            "expiration": 1603177200000,
            "canExpire": true,
            "coreCount": 0,
            "version": "10.8.1"
        }],
        "version": 108,
        "machineName": "MACHINE2.DOMAIN.COM"
    }
]}

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