get.openclosedate.jira: get open and closed date from JIRA

View source: R/scraping-jira.R

get.openclosedate.jiraR Documentation

get open and closed date from JIRA

Description

Collect open and closed date of issues from JIRA with query

Usage

get.openclosedate.jira(
  query,
  user = NULL,
  password = "",
  authtype = "basic",
  url = "https://issues.apache.org/jira/rest/api/2/search",
  startAt = 0,
  maxResults = 50,
  date.min = NULL,
  date.max = Sys.time(),
  by = "1 month"
)

Arguments

query

A character string for a query

user

A string for user

password

A string for password

authtype

A string for authentication. The default is basic.

url

An URL for JIRA

startAt

An integer to start

maxResults

An integer to the number of issues for a transaction.

date.min

A character string for date, indicating the starting date.

date.max

A character string for date, indicating the ending date.

by

A character string. A increment of date. "1 month", "1 day", etc. are available.


okamumu/Rsrat documentation built on Feb. 10, 2024, 11:07 p.m.