what Jira rest APi i should use to Get all issues from a project in powerbi
Hello @Sakina
you should be able to use the v2 with the following endpoint:
https://xxxx.atlassian.net/rest/api/2/search/jql
Issue Search
Best regards,
Jan
Hello @Sakina ,
You may do a search using ISSUE SEARCH REST API:
Count your issues in JQL
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-approximate-count-post
Search for Issue using JQL Enhanced search: https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-jql-get
Always have a look for BETA and DEPRECATED APIs' - https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#about
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi @Piyush Annadate _ACE Pune_ thank you for the reply i was able to get Issues using JQL Enhanced, but still struggling to Locate from where i can get Issue status Transaction details, I tried Changelog API but not sure where to Look exactly into it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
in the API - there's option for fields; add that as query parameter
example:
/rest/api/3/search/jql?jql=project=JATP&fields=all&expand=changelog,status
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you @Piyush Annadate _ACE Pune_ I will try this one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.