{ "opencollection": "1.0.0", "info": { "name": "Jupyter Notebook Jupyter Kernel Gateway Authorization Sessions API", "version": "3.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Sessions", "type": "folder" }, "items": [ { "info": { "name": "Jupyter Notebook List running sessions", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:8888/api/api/sessions" }, "docs": "List all currently running notebook sessions." }, { "info": { "name": "Jupyter Notebook Create a new session", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:8888/api/api/sessions", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new session by starting a kernel and associating it with a notebook path." }, { "info": { "name": "Jupyter Notebook Get a session", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:8888/api/api/sessions/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "Unique identifier for the session." } ] }, "docs": "Get the details of a specific session by its ID." }, { "info": { "name": "Jupyter Notebook Update a session", "type": "http" }, "http": { "method": "PATCH", "url": "http://localhost:8888/api/api/sessions/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "Unique identifier for the session." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a session, for example to change the associated kernel or notebook path." }, { "info": { "name": "Jupyter Notebook Delete a session", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:8888/api/api/sessions/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "Unique identifier for the session." } ] }, "docs": "Delete a session and shut down its associated kernel." } ] } ], "bundled": true }