Search Issues
Search Jira issues.
For more information on the API for searching issues, see Search for issues using JQL (opens in a new tab).
SDK Import:
from admyral.actions import search_jira_issues
Arguments:
Argument Name | Description | Required |
---|---|---|
JQL jql | The JQL (opens in a new tab) query to search for issues. | Yes |
Limit limit | The maximum number of issues to return. | Yes |
Returns
A JSON array of JSON objects.
Required Secrets
Secret Placeholder | Description |
---|---|
JIRA_SECRET | Jira secret. See Jira setup |
SDK Example
search_jira_issues(
jql='project = SJ AND status IN ("In Progress", "To Do") AND updated < -1w AND updated >= -8d',
limit=10,
secrets={"JIRA_SECRET": "my_stored_jira_secret"}
)