Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello, I would like to retrieve the contents of my dataset_ID. Using this link https://learn.microsoft.com/en-en/rest/api/power-bi/datasets/get-dataset-in-group I was able to obtain the group_id and the dataset_id through the following query: GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}Now, I would like to retrieve the contents of each ID_dataset. How do I proceed? I would need help for this.
Thank you in advance for your help.
Hello, I would like to retrieve the contents of my dataset_ID. Using this link https://learn.microsoft.com/en-en/rest/api/power-bi/datasets/get-dataset-in-group I was able to obtain the group_id and the dataset_id through the following query: GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}Now, I would like to retrieve the contents of each ID_dataset. How do I proceed? I would need help for this.
Thank you in advance for your help.
I would like to retrieve the contents of each ID_dataset
datasets (Semantic Models) contain tables and partitions. Please be more specific in what you are trying to retrieve. It will also help if you can indicate what you plan to do after the retrieval.
I want to retrieve the tables and their contents, then send them to a database.
I allow to put my basic code here acr I’m looking for a solution .
import requests
1. I receive an error when retrieving tables: Error 404, message: Dataset xxxxx is not Push API dataset, and it leaves me table retrieval error.
2. What solutions I can do or even how to change my code to get the tables and their content.?
3. If I want to use the Endpoint XMLA, how can I use it? What documentation should I turn to for Using XMLA ?
4. Is there a solution to my problem? how to correct the message Dataset is not Push API dataset.?
Hi @Christ-M,
>>Error 404, message: Dataset xxxxx is not Push API dataset, and it leaves me table retrieval error.
The error message mention the dataset xxx is not a push dataset so you can't use push dataset related rest api to operate on it.
I'd like to suggest you check their types to confirm these:
Real-time streaming in Power BI - Power BI | Microsoft Learn
Creating real-time dashboards in Power BI with push datasets - SQLBI
Regards,
Xiaoxin Sheng
@v-shex-msft @lbendlin Finally, there is no API to extract the semantic data that are not push APIs. It’s a bit unfortunate that this question is not well detaille with a clear answer.
I was able to go to the source of the data, but the problem is that the data of the root have undergone treatments, I just want to recover the processed data. I have hundreds of power bi reports and I need to solve this problem.
Finally, there is no API to extract the semantic data that are not push APIs.
That is incorrect. You can run DAX queries against the semantic model, including simple EVALUATE queries.
However, trying to "extract all data from a cube" is similar to "create a flat table from a multi level JSON or XML". It's just not possible because there is a clear difference between a multidimensional object and a simple flat table. You cannot convert one into the other without loss of detail.
Hello, I would like to retrieve the contents of my dataset_ID. Using this link https://learn.microsoft.com/en-en/rest/api/power-bi/datasets/get-dataset-in-group I was able to obtain the group_id and the dataset_id through the following query: GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}Now, I would like to retrieve the contents of each ID_dataset. How do I proceed? I would need help for this.
Thank you in advance for your help.