Searches for Jira issues using a Jira Query Language (JQL) string.
For authentication setup, see Jira issue actions.
Input Field | Optionality | Type | Description | Example |
|---|---|---|---|---|
authToken | Required | String | Base64-encoded string of |
|
domain | Required | String | Your Jira Cloud instance domain (company name). Used to construct the base URL |
|
jql | Required | String | A JQL expression. Requires a bounded query (a query with a search restriction). Example of an unbounded query: |
|
maxResults | Optional | Integer | The maximum number of items to return per page. Returns a maximum of 5000 issues. |
|
parameters | Optional | Map | Optional additional query parameters for the Jira API request. See the parameters reference table below. |
|
selectors | Optional | List | A list of named expressions to extract specific values from the response. |
|
Parameters reference
Parameter | Type | Description |
|---|---|---|
expand | String | Comma-separated list of additional information to include in the response. Options: |
fields | array<string> | A comma-separated list of fields to return for each issue. Use |
fieldsByKeys | Boolean | Whether to reference fields by their key rather than ID. Default: |
nextPageToken | String | Token for fetching the next page of results. The first page has a |
properties | array<string> | A comma-separated list of up to 5 issue properties to include in the results. |
failFast | Boolean | Whether to fail the request quickly if field data cannot be retrieved. Default: |
Output Field | Type | Example |
|---|---|---|
response | Object | |
success | Boolean |
|
errorMessage | String | |
Workflow example |
|---|
|