R/list_jobs.R

#' List Jobs
#'
#' A list of jobs owned by the calling account. 
#' 
#' @param \dots Additional arguments passed to \code{\link{captr_GET}}.
#' 
#' @export
#' @references \url{https://shreddr.captricity.com/developer/api-reference/#v1-jobs}
#' 
#' @examples \dontrun{
#' list_jobs()
#' }

list_jobs <- function(...) {

  res <- captr_GET("job/", ...)

  cat("No. of jobs:", nrow(res), "\n")

  res

}

Try the captr package in your browser

Any scripts or data that you put into this service are public.

captr documentation built on May 2, 2019, 3:26 p.m.