download_jira_issues_by_issue_key | R Documentation |
#' Wraps around download_jira_issues
providing jql query parameters for specifying issue key ranges.
Only issues created in the specified date range inclusive will be downloaded.
download_jira_issues_by_issue_key(
domain,
jql_query,
fields,
username = NULL,
password = NULL,
save_folder_path,
max_results,
max_total_downloads,
issue_key_lower_bound = NULL,
issue_key_upper_bound = NULL,
verbose
)
domain |
Custom JIRA domain URL |
jql_query |
Specific query string to specify criteria for fetching |
fields |
List of fields that are downloaded in each issue |
username |
the JIRA username |
password |
the JIRA password/API token |
save_folder_path |
Path that files will be saved in .json format |
max_results |
(optional) the [maximum number of results](https://confluence.atlassian.com/jirakb/how-to-use-the-maxresults-api-parameter-for-jira-issue-search-rest-api-1251999998.html) to download per page. Default is 50. |
max_total_downloads |
Maximum downloads per function call.
This parameter specifies how many issues should be downloaded. Subsequent API calls will stop if they
reach or surpass this value.
See |
issue_key_lower_bound |
Optional. Specify the lower bound issue key (e.g. SAILUH-1) |
issue_key_upper_bound |
Optional. Specify the upper bound issue key (e.g. SAILUH-3) |
verbose |
Set verbose=TRUE to print execution details. |
The acceptable format for 'issue_key_lower_bound' and 'issue_key_upper_bound' is: <project key>-<issue number>
For example: 'issue_key_lower_bound=SAILUH-1' (SAILUH-1 will also be downloaded).
For further details on the 'issueKey' JQL Query see [the associated JIRA API documentation](https://support.atlassian.com/jira-software-cloud/docs/jql-fields/#Issue-key)
download_jira_issues_by_date
to download JIRA issues and/or comments by date range
download_jira_issues
for more flexibility in specifying the JQL query
parse_jira
to parse jira data with or without comments
refresh_jira_issues
to obtain more recent data from any of the downloader functions
Other jira:
download_jira_issues_by_date()
,
download_jira_issues()
,
refresh_jira_issues()
Other downloaders:
download_jira_issues_by_date()
,
download_jira_issues()
,
refresh_jira_issues()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.