Редактирование глобальных настроек ноды (изменяет значения для всех её копий тоже)

PATCH /editor/nodes/:int:node_id/nodesParam

Request

{
	"name": "newName", //optional
  "title": "newTitle", //optional
	"description": "new descr",  //optional
  "function": "import datetime\\n\\nfresult = {\\"testResult\\": datetime.datetime.now()}", //optional 
	"version": "2.3", //optional 
	"isAsync": true, //optional
}

Response

{
  "status": 1,
  "message": "",
  "response": {
      "id": 12,
			"name": "newName", 
		  "title": "newTitle",
			"description": "new descr", 
		  "function": "import datetime\\n\\nfresult = {\\"testResult\\": datetime.datetime.now()}", 
			"version": "2.3", 
			"isAsync": true,
    }
}