UNPKG

node-red-contrib-powerbi

Version:

A PowerBI API interaction node-red module which allows to interact with PowerBI service.

22 lines (15 loc) 476 B
var request = require('request'); module.exports = function(RED) { function PowerBIExport(config) { RED.nodes.createNode(this,config); // Retrieve the connection node. this.connection = RED.nodes.getNode(config.connection); var node = this; node.on('input', function (msg) { // My code here. msg.payload = "Ariel Rosado Rivera - Test 1"; node.send(msg); }); } RED.nodes.registerType('powerbi-export', PowerBIExport); }