curl --request POST \
--url https://api.example.com/cabinet/admin/remnawave/nodes/{node_uuid}/action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "enable"
}
'{
"success": true,
"message": "<string>",
"is_disabled": true
}Perform an action on a node (enable/disable/restart).
curl --request POST \
--url https://api.example.com/cabinet/admin/remnawave/nodes/{node_uuid}/action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "enable"
}
'{
"success": true,
"message": "<string>",
"is_disabled": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request to perform node action.
enable, disable, restart