- URL:https://<notebookserveradmin>/notebooks/<notebookID>
- Required Capability:Administrator or Create and Edit ArcGIS Notebooks
- Related Resources:Notebooks, Open Notebook, Close Notebook, Execute Notebook
- Version Introduced:10.7
Description
This resource contains a description of a specific notebook's properties.
Request parameters
Parameter | Details |
---|---|
f | The response format. The default response format is html. Values: html | json | pjson |
Response properties
Property | Details |
---|---|
id | The notebook's unique ID in your container. Note that this is different than its portal item ID. |
notebookUrl | The unique URL of the notebook's item page, beginning with the /notebooks/ path. The URL is constructed in the following format:
|
containerId | The ID of the container hosting the notebook. |
Username | The user who owns the notebook. |
itemId | The unique portal item ID of the notebook. It is included in the notebook URL. |
dateLastActivity | The last time the notebook was modified or run, given in milliseconds from epoch, with the current date and UTC time in parentheses. |
JSON Response syntax
{
"itemId": "<portal item ID>",
"notebookUrl": "<notebook item URL>",
"dateLastActivity": "<milliseconds>",
"id": "<notebook's unique ID>",
"containerId": "<container's unique ID>",
"username": "<notebook owner's username>"
}
JSON Response example
{
"itemId": "525d80c96d5a4915bb5cfff79c851fb1a",
"notebookUrl": "/notebooks/82hb62d771ec4f8185b6b861b65dc521/notebooks/525d80c96d5a4915bb5cfff79c851fb1a.ipynb",
"dateLastActivity": "1544488988365",
"id": "c9ae74cc34b1414bad0618bdb5f54d4d",
"containerId": "82hb2d771ec4f8185b6b861b65dc521",
"username": "janedoe"
}