1.0.9 • Published 4 years ago

powerbi-adapter v1.0.9

Weekly downloads
3
License
MIT
Repository
-
Last release
4 years ago

Power BI Adapter

Power BI Adapter provides a simple NodeJS API construct to interact with PowerBI Rest APIs

Installation

npm i powerbi-adapter

Usage

const PowerBI = require("powerbi-adapter")

let credentials = {
    "clientId": "<specify client id here>",
    "username": "<specify username here>",
    "password": "<specify password here>"
}

let options = {}

let powerBI = new PowerBI(credentials, options)

// query available groups in Power BI
powerBI.groups()
    .then (groups => {

        console.log(groups)
    })
    .catch(err => {

        // handle err
        console.error(err)
    })
1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago