Skip To Content
ArcGIS Developer
Dashboard

Notebook Server Directory

Description

ArcGIS Notebook Server uses server directories to store the user content associated with notebooks. In addition, some directories contain configurations that power the notebooks.

There are four kinds of directories, each of which plays a specific role in server operations: the workspace directory, the data directory, the output directory, and the system directory.

You can register a local directory as a data directory, making it available in ArcGIS Notebooks running in your site.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json | pjson

JSON Response syntax


{
  "path": "path",
  "name": "name",
  "id": "some_id",
  "type": "DATA"
}

JSON Response example

The following example demonstrates the response returned for a data directory on a Windows machine:


{
  "path": "d:\\data",
  "name": "EarthquakesData",
  "id": "a18ade52-5ad1-43e9-aa3b-cc1a371bd45d",
  "type": "DATA"
}