The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I had a requirement of creting a power BI report with refresh Historey of all the datasets in all workspaces. is there a way to get it done. Kindly help me on this
Solved! Go to Solution.
You can do this with the Power BI REST API and the Power Automate HTTP connector.
You will need:
Get all workspaces:
GET https://api.powerbi.com/v1.0/myorg/admin/groups?$top=5000
Get datasets for each workspaces
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets
Get refresh history for each dataset
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/refreshes?$top=10
Please mark this post as a solution if it helps you. Appreciate Kudos.
You can do this with the Power BI REST API and the Power Automate HTTP connector.
You will need:
Get all workspaces:
GET https://api.powerbi.com/v1.0/myorg/admin/groups?$top=5000
Get datasets for each workspaces
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets
Get refresh history for each dataset
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/refreshes?$top=10
Please mark this post as a solution if it helps you. Appreciate Kudos.
User | Count |
---|---|
39 | |
14 | |
12 | |
11 | |
8 |
User | Count |
---|---|
49 | |
35 | |
23 | |
21 | |
18 |