POST
/
gpu-instance
/
openapi
/
v1
/
gpu
/
instance
/
start

Request Headers

Content-Type
string
required

Enum: application/json

Authorization
string
required

Bearer authentication format, for example: Bearer {{API Key}}.

Request Body

instanceId
string
required

ID of the instance to be started.

Example

Request

curl --request POST \
  --url 'https://api.novita.ai/gpu-instance/openapi/v1/gpu/instance/start' \
  --header 'Authorization: Bearer {{API Key}}' \
  --header 'Content-Type: application/json' \
  --data '{
    "instanceId": "<string>"
  }'

Response

{}