R/getMySessionsList.R

Defines functions getMySessionsList

Documented in getMySessionsList

#' get screening session list for a user
#'
#' This API of the web service returns a list of the sessions for the authenticated user.
#'
#' @return The details of the users sessions
#'
#' @examples
#'
#' \dontrun{
#' getMySessionsList()
#' }
#' @export
getMySessionsList <- function() {
  url <- datsu_api("getMySessionsList")

  out <- datsu_get(url, use_token = TRUE)

  out
}

Try the icesDatsu package in your browser

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

icesDatsu documentation built on Oct. 25, 2024, 1:06 a.m.