get_jira_dashboards: Retrieves all dashboards a 'data.frame'

Description Usage Arguments Value See Also Examples

View source: R/exports.R

Description

Calls JIRA's latest REST API, optionally with basic authentication, to get all dashboards

Usage

1
2
3
4
5
6
7
get_jira_dashboards(
  domain = NULL,
  username = NULL,
  password = NULL,
  maxResults = 20L,
  verbose = FALSE
)

Arguments

domain

Custom JIRA domain URL as for example https://bugreports.qt.io. Can be passed as a parameter or can be previously defined through the save_jira_credentials() function.

username

Username used to authenticate the access to the JIRA domain. If both username and password are not passed no authentication is made and only public domains can bet accessed. Optional parameter.

password

Password used to authenticate the access to the JIRA domain. If both username and password are not passed no authentication is made and only public domains can bet accessed. Optional parameter.

maxResults

Max results authorized to obtain for each API call. By default JIRA sets this value to 20 issues.

verbose

Explicitly informs the user of the JIRA API request process.

Value

Returns a flattened, formatted data.frame with the dashboards in the domain.

See Also

For more information about Atlassians JIRA API visit the following link: JIRA API Documentation.

Examples

1
get_jira_dashboards(domain = "https://bugreports.qt.io")

matbmeijer/JirAgileR documentation built on June 12, 2021, 8:47 a.m.