R/notifications.R

Defines functions notifications

Documented in notifications

#' Get notifications
#'
#' @export
#' @template curl
#' @param parse (logical) Attempt to parse to data.frame's if possible. Default: \code{TRUE}
#' @return either a data.frame or a list
#' @examples \dontrun{
#' notifications()
#' }
notifications <- function(parse = TRUE, ...) {
  res <- asp_GET("notifications", list(), ...)
  asp_parse(res, parse)
}
ropenscilabs/aspacer documentation built on Sept. 3, 2020, 5:30 a.m.