1. Instances
LightNode
en
  • cn
  • en
  • API Overview
  • API Authentication Guide
  • Instances
    • Create Instance
      POST
    • Delete Instance
      POST
    • Stop Instance
      POST
    • Start Instance
      POST
    • Restart Instance
      POST
    • Reset Password
      POST
    • Instance Details
      GET
    • Reinstall OS
      POST
    • Instance List
      GET
  • Security Groups
    • Security Group List
      GET
  • Images
    • Image List
      GET
  • Async Tasks
    • Get Async Task Result
      GET
  • SSH Keys
    • SSH Key List
      GET
  • Regions
    • Region List
      GET
  • Packages
    • Package List
      GET
  • Schemas
    • Instance Model
  1. Instances

Start Instance

POST
https://openapi.lightnode.com/instance/start

API Overview#

Starts a cloud server by the specified server ID.#

This is an asynchronous API. After the start request is accepted, the operation is not completed immediately. Query the task execution status and check processResult. When processResult is SUCCESS, the cloud server has been started successfully.#

Request

Header Params

Body Params application/json

Example
{
    "ecsResourceUUID": "ecs-wr00007bgadt"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://openapi.lightnode.com/instance/start' \
--header 'x-open-token: test-token' \
--header 'Content-Type: application/json' \
--data '{
    "ecsResourceUUID": "ecs-wr00007bgadt"
}'

Responses

🟢202Success
application/json
Bodyapplication/json

Example
{
    "asyncTaskUUID": "cm00007dyzmz",
    "httpStatus": 202,
    "rowCount": 0
}
Modified at 2026-04-10 05:41:02
Previous
Stop Instance
Next
Restart Instance
Built with