Skip to main content
POST
/
cabinet
/
admin
/
remnawave
/
nodes
/
{node_uuid}
/
action
Perform Node Action
curl --request POST \
  --url http://localhost:8080/cabinet/admin/remnawave/nodes/{node_uuid}/action \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "enable"
}
'
{
  "success": true,
  "message": "<string>",
  "is_disabled": true
}

Path Parameters

node_uuid
string
required

Body

application/json

Request to perform node action.

action
enum<string>
required
Available options:
enable,
disable,
restart

Response

Successful Response

Response after node action.

success
boolean
required
message
string | null
is_disabled
boolean | null