Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello Friends,
I am new in power bi rest api, I had succuessfully integrated power bi get dataset api in our app.
Now I am trying to add List All tables api. But didn't got success.
https://api.powerbi.com/v1.0/myorg/datasets/some guid/tables
Every time I am getting following response. I also try with different different dataset but not getting success.
{ "error": { "code": "NotImplemented", "message": "GET tables method is not supported for this dataset" } }
Regards,
Sandeep
Solved! Go to Solution.
Based on my test, you can only use the API against the datasets created via REST API. A normal dataset published from desktop doesn't support this.
Based on my test, you can only use the API against the datasets created via REST API. A normal dataset published from desktop doesn't support this.
I am having same problem, I am trying to get list of tables of datasets.
Followed documentation :
Please suggest
// for specific datasets "tables"
app.get("/dataset", [ensureAuthenticated, generatePBIAccessToken], function (req, res) {
var data = req.query;
data.user = req.user;
var options = {
method: 'GET',
url: 'https://api.powerbi.com/v1.0/myorg/groups/' + app.locals.POWERBI_GROUP + '/datasets/' + data.datasetid + '/datasources',
headers: {
'cache-control': 'no-cache',
'authorization': 'Bearer ' + req.session.access_token,
'content-type': 'application/x-www-form-urlencoded',
'accepts': 'application/json',
'charset': 'utf - 8',
'request': 'System.Net.WebRequest.Create(powerBIDatasetsApiUrl) as System.Net.HttpWebRequest'
},
form: {
"accessLevel": "View",
"datasetId": req.query.datasetid,
"allowSaveAs": true
}
};
console.log("************************************ for datasetkeys");
console.log(options);
console.log("************************************");
request(options, function (error, response, body) {
if (error) throw new Error(error);
data.embed = JSON.parse(body);
res.render('pbi-dataset', data);
});
});
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 4 | |
| 3 | |
| 2 |