Forum Discussion
Pull Data into Power BI
Manal
I am not sure about external data source but you can use powerbi URL to set filters. For example https://app.powerbi.com/groups/me/reports/99999999-3498-3a81-acdc-1386adfo8901b?filter=MyDataset/Gender eq 'F'
Where '99999999-3498-3a81-acdc-1386adfo8901b' is my report I'd, 'MyDataset' is my dataset, 'Gender' is filter and is equal to 'F'.
You can use power bi rest api calls to push data live from your application. Here is documentation on rest api.
I have an hybrid data source that I get data from using SOAP calls. The java code pulls data from my app then pushes it into power BI using the REST API.
What I want to do is when I hit "Refresh" in the PBI Dashboard, execute my java code and get the new data without having to do it from my app.
Now I'm sending the data from my app but it would be better if I can call the data from PBI.
Is there a curl command that enables this call?
- v-qiuyu-msft10 years agoCommunity Support
Hi Manal,
A hybrid database is not available in Power BI data source list. In your scenario, the better way is to get data via rest API. When refresh the dashboard, it's unavoidable to execute the code again to get data from hybrid.
Best regards,
Qiuyun Yu- Yasda0810 years agoNew Member
Hi,
Does it mean that it is not possible to call an external web service and pull data into Power BI?
Is the only option is to push data into Power BI?