- URL:
- https://<notebookserveradmin>/notebooks/<notebookID>
- Methods:
GET
- Related Resources:
- Notebooks, Open Notebook, Close Notebook, Execute Notebook
- Required Capability:
- Administrator or Create and Edit
- Version Introduced:
- 10.7
Description
This resource contains a description of a specific notebook's properties.
Request parameters
Parameter | Details |
---|---|
| The response format. The default response format is Values: |
Response properties
Property | Details |
---|---|
| The notebook's unique ID in your container. Note that this is different than its portal item ID. |
| The unique URL of the notebook's item page, beginning with the
|
| The ID of the container hosting the notebook. |
| The user who owns the notebook. |
| The unique portal item ID of the notebook. It is included in the notebook URL. |
| 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"
}