Power Automate and Jira's new API and JQL queries

 

Jira change their API as sometime in 2025 and I am writing this in January 2026. 
Here is the new info for Power Automate using the HTTP action

Method: GET
URI: https://YOURCOMPANY.atlassian.net/rest/api/3/search/jql

Headers:
Accept: application/json

Image example

Queries
**Just examples, you can find Jira's JQL Cheat sheet here>https://www.atlassian.com/software/jira/guides/jql/cheat-sheet#intro-to-jql

jql  project = YOURPROJECTBOARD AND updated >= -30d ORDER BY updated DESC"}]}

maxResults 100

fields key,summary,status,assignee,updated

Image Example

Authentication: Basic
Username: Your username. Usually your email
Password: Your API Token
You can get your token here> https://id.atlassian.com/manage-profile/security/api-tokens
 

Then you can parse the JSON and grab data from Jira.

cool
Some other useful info is after the Parse JSON action, 
You'll need to use an Expression to get the field data you need.
I used a "Select" action to flatten the values so I could put them in a CSV without a loop "Apply_to_each".
Expression Example: item()?['key']

Blog Type: