PUT /nodes/:module/:set

Node setの有効・無効を設定します。

必要となる権限: nodes.write

Headers

Header Value
Authorization Bearer [token] - 認証が有効になっている場合
Content-type application/json

Arguments

Path Component Description
module モジュール名
set Node Set名

リクエストボディは下記のようなJSON文字列でなければなりません:

Field Description
enabled true または false - モジュールを有効にするか無効にするか
{
  "enabled": true
}

Response

Status Code Reason Response
200 成功 Node Module オブジェクト。レスポンスボディの例を参照
400 不正なリクエスト エラーを返す
401 認証されなかった 無し
404 見つからなかった 無し
{
  "id": "node-red-node-suncalc/suncalc",
  "name": "suncalc",
  "types": [
    "sunrise"
  ],
  "enabled": false,
  "module": "node-red-node-suncalc"
}