Forum Discussion
Connect PowerBI to Jira Server with Rest API
- 7 months ago
In Power BI Desktop → Get Data → Web:
Use the REST endpoint, e.g.Server info:
https://<your-jira>/rest/api/2/serverInfoIssues search (paged):
https://<your-jira>/rest/api/2/search?jql=project=ABC&maxResults=50&startAt=0
When prompted for credentials:
Authentication: Basic
Username: your Jira username
Password: your PAT (not your Jira password)
If your Jira is configured to accept PATs for Basic auth, this works.
In Power BI Desktop → Get Data → Web:
Use the REST endpoint, e.g.
Server info:
https://<your-jira>/rest/api/2/serverInfoIssues search (paged):
https://<your-jira>/rest/api/2/search?jql=project=ABC&maxResults=50&startAt=0
When prompted for credentials:
Authentication: Basic
Username: your Jira username
Password: your PAT (not your Jira password)
If your Jira is configured to accept PATs for Basic auth, this works.
I ended up having to use an M script and Bearer token but I made the connection.