init
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
### GET /api/v1/health
|
||||
GET http://127.0.0.1:8001/api/v1/health
|
||||
|
||||
### POST /api/v1/jupyter start
|
||||
POST http://127.0.0.1:8001/api/v1/jupyter
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"action": "start",
|
||||
"workspace_id": "test1234"
|
||||
}
|
||||
|
||||
|
||||
### POST /api/v1/jupyter list
|
||||
POST http://127.0.0.1:8001/api/v1/jupyter
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"action": "list"
|
||||
}
|
||||
|
||||
|
||||
### POST /api/v1/jupyter stop
|
||||
POST http://127.0.0.1:8001/api/v1/jupyter
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"action": "stop",
|
||||
"workspace_id": "test1234"
|
||||
}
|
||||
|
||||
### POST /api/v1/jupyter get
|
||||
POST http://127.0.0.1:8001/api/v1/jupyter
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"action": "get",
|
||||
"workspace_id": "test1234"
|
||||
}
|
||||
Reference in New Issue
Block a user