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

1
2
3
https://gisserver.domain.com:11443/arcgis/admin/licenses
byMachine=true
f=json

JSON Response syntax (default)

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

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)

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

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.

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