PUT /nodes/:module

ノードの有効・無効を設定します。

必要となる権限: nodes.write

Headers

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

Arguments

Path Component Description
module モジュール名

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

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

Response

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