POST
/
api
/
servers
/
{server_name}
/
start
curl --request POST \
  --url https://dashboard.amdatascience.com/api/servers/{server_name}/start \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '{
  "environment": "ai",
  "port": 5000,
  "server_request": "amds-medium_cpu"
}'
{
  "alph_editor_url": "http://dashboard.amdatascience.com/alph-editor/test-server",
  "environment": "ai",
  "hourly_rate": 4,
  "message": "Notebook server test-server started.",
  "port": 5000,
  "port_forward_url": "https://test-server--3e873823.americandatascience.dev",
  "server_name": "test-server",
  "server_request": "amds-medium_cpu",
  "status": "success",
  "token": null,
  "url": "https://lab.amdatascience.com/user/demo@example.com/test-server/"
}

Authorizations

apiKey
string
header
required

Path Parameters

server_name
string
required

Body

application/json
environment
string
Example:

"ai"

port
number
Example:

5000

server_request
string
Example:

"amds-medium_cpu"

Response

200 - application/json
Start Server
alph_editor_url
string
Example:

"http://dashboard.amdatascience.com/alph-editor/test-server"

environment
string
Example:

"ai"

hourly_rate
number
Example:

4

message
string
Example:

"Notebook server test-server started."

port
number
Example:

5000

port_forward_url
string
Example:

"https://test-server--3e873823.americandatascience.dev"

server_name
string
Example:

"test-server"

server_request
string
Example:

"amds-medium_cpu"

status
string
Example:

"success"

token
any | null
url
string
Example:

"https://lab.amdatascience.com/user/demo@example.com/test-server/"