Download issue-related data from a Jira server using a JQL query.

Parameters:

Parameters:
See dedicated page for more information.
This action also works when accessing the web through a PROXY server.
The parameter P1 is the Jira JQL query executed on your Jira Server. For more information about the JQL syntax, please refer to this webpage:
https://www.atlassian.com/software/jira/guides/expand-jira/jql
All the parameters of this action are self-explanatory with the exception of the parameter P4: it’s the “Jira token”.
Runs a JQL query against your Jira Cloud and returns the matched issues as a table (one row per issue). Good for reporting/exports or feeding later steps (e.g., writeCSV).
https://YOURDOMAIN.atlassian.net)| Field | What to enter | Example |
|---|---|---|
| Jira JQL query | A valid JQL string | project = SCRUM ORDER BY created DESC |
| url | Base Jira site URL (no project/board path) | https://********.atlassian.net |
| user | Atlassian account email | you@company.com |
| token | The API token you generated | ******** |
| Debug information level | Log verbosity | nothing (default) / basic / verbose |
| Optional: extra parameters for cURL | Extra curl args (rare) | (leave empty) |
| Number of retries on connection error | Retries on connection errors | 3 |
Use only the site base URL. Don’t paste board or project URLs.
Set:
Jira JQL query: project = SCRUM ORDER BY created DESCurl: your base siteuser & token: your email & API tokenRun preview.
Check Data tab for rows; nested objects appear as JSON strings in columns (e.g., statusCategory, project, issuetype).

[ jiraQueryIssues ] → (optional mappers/filters) → [ writeCSV ]
If you want to export, drop a writeCSV action, map all columns, and run.
project = SCRUMproject = SCRUM AND statusCategory != Doneproject = SCRUM AND created >= -7dassignee = currentUser()ORDER BY created DESCproject = SCRUM AND issuetype in (Bug, Task) AND created >= -30d ORDER BY priority DESC, created DESCid, key, summary, created) and some JSON blobs for complex fields (project, issuetype, statusCategory, etc.).| Symptom | Likely cause | Fix |
|---|---|---|
Jira Error(2): Error in the JQL Query… expecting operator |
JQL isn’t valid (e.g., just SCRUM) |
Use proper JQL: project = SCRUM … |
HTML response (<!DOCTYPE html>) |
You used a board/project URL instead of base | Use https://YOURDOMAIN.atlassian.net |
200 OK but {"total":0,"issues":[]} |
Query returned no issues | Relax JQL or create a test issue |
| Nothing in Data/Records but green success | Same as above (no matches) | Use a broader query like project = SCRUM |
| Need more details | Low debug level | Switch Debug information level to verbose and re-run |
| Auth problems | Wrong email/token | Regenerate API token; copy carefully (no spaces) |
Number of retries on connection error times for network errors).