Services

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

Description

The services resource is a container of services published on Notebook Server. You can create a geoprocessing service (web tool) using the createService operation. The types resource returns a list of all service types and their extensions supported on ArcGIS Notebook Server.

This list includes services published by all users when accessed by an administrator. Users with the Publish Web Tool privileges who are not administrators can see only their services listed.

Request parameters

ParameterDetails

start

The number of the first entry in the result set response. The index number is 1-based.

Default value: 1

Example:

Use dark colors for code blocksCopy
1
start=5

num

The maximum number of results to be included in the result set response. The default value is 10 , and the maximum allowed value is 100 .

Example:

Use dark colors for code blocksCopy
1
2
//Returns a maximum of 50 results in a response
num=50

f

The response format. The default response format is html .

Values: html | json | pjson

Example usage

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/admin/services?f=json

JSON Response syntax

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
{
  "total" : <total number of results>,
  "start" : <The number of the first entry in the result set response>,
  "num": < maximum number of results to be included in the result set response >,
  "services": [
    {
      "owner": "service 1 owner username",
      "name": "service name",
      "id": "itemId of Web Tool item 1",
      "type": "GPServer"
    },
    {
      "owner": "service 2 owner username",
      "name": "service name",
      "id": "itemId of Web Tool item 2",
      "type": "GPServer"
    }
  ],
  "currentVersion": "currentVersion"
}

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
24
25
26
{
  "total": 3,
  "num": 10,
  "start": 1,
  "services": [
    {
      "owner": "nbdemo",
      "name": "Calculate Market Area",
      "id": "d83d3a26a6be47e88d44337aa655ece1",
      "type": "GPServer"
    },
    {
      "owner": "nbdemo",
      "name": "EV Route Planning Tool",
      "id": "928975fc42454fb39626db5d178a8e38",
        "type": "GPServer"
      },
      {
        "owner": "nbdemo",
        "name": "Web tool demo",
        "id": "d38b2de4b3844703887228b9db256b7c",
        "type": "GPServer"
      }
    ],
    "currentVersion": 11.1
}

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