GET /nodes/:module

ノードの情報を取得します。

必要となる権限: nodes.read

Headers

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

Arguments

Path Component Description
module モジュール名

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,
      "module": "node-red-node-suncalc",
      "version": "0.0.6"
    }
  ]
}