- URL:https://<notebookserveradmin>/admin/system/directories/register(POST only)
- Required Capability:Administrator
- Version Introduced:10.7
Description
This operation registers a new data directory from your local machine with the ArcGIS Notebook Server site. Registering a local folder as a data directory allows your notebook authors to work with files in the folder.
Request Parameters
Parameter | Details |
---|---|
name | The name of the directory. |
path | The full path to the directory on your machine. |
type | The type of directory. Values: DATA | WORKSPACE | OUTPUT |
f | The response format. The default is html. Values: html | json | pjson |
Response Properties
Property | Details |
---|---|
status | Indicates success or failure with registering the directory. |
JSON Response Syntax
{
"path": "path",
"name": "name",
"id": "some_id",
"type": "DATA"
}
JSON Response Example
{
"path": "d:\\data",
"name": "EarthquakesData",
"id": "a18ade52-5ad1-43e9-aa3b-cc1a371bd45d",
"type": "DATA"
}