Forum Discussion
gooduling
5 years agoFrequent Visitor
How to get data from 3rd party REST API in PowerBI?
Hi, I'm pretty new in Power BI, so I feel I have a mess in my head after all read Documents. So what I need is a dashboard with Query fields and visualisation, where the user would be able to reques...
- Anonymous5 years ago
Hi gooduling,
I think you can choose a web connector to handle the rest API.
Solved: Pull data from a REST API Authentication - Microsoft Power BI Community
Sample formula:
let token = "", Result = Web.Contents( "https://xxxxx.xxx.com", [ Headers = [ #"Content-Type" = "application/json", Authorization = "Bearer " + token, RelativePath = "/api/items" ] ] ) in ResultRegards,
Xiaoxin Sheng
gooduling
5 years agoFrequent Visitor
Ok, I think I know the answer: Power Query Data Conectors
https://www.youtube.com/watch?v=srQ-DLqhoxM
https://github.com/Microsoft/DataConnectors
Let me know if I'm wrong please