Forum Discussion
JIRA API connection with Power BI
- Anonymous1 year ago
Hi Anonymous ,
According to your screenshot, you seem to have connected to the data source. As for the lack of data display, I suggest you try to limit the number of imports, and then check whether there is data in the table view:
In addition, about the M code of API:let url = "http://localhost:8080/rest/api/2/issue/QA-31", headers = [ #"Authorization" = "Basic xxxxx", #"Content-Type" = "application/json" ], response = Web.Contents(url, [Headers=headers]) in response
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Small update: With the Jira content pack I don't get that screen but I get an empty table with a lot of columns:
Hi Anonymous ,
According to your screenshot, you seem to have connected to the data source. As for the lack of data display, I suggest you try to limit the number of imports, and then check whether there is data in the table view:
In addition, about the M code of API:
let
url = "http://localhost:8080/rest/api/2/issue/QA-31",
headers = [
#"Authorization" = "Basic xxxxx",
#"Content-Type" = "application/json"
],
response = Web.Contents(url, [Headers=headers])
in
response
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.