R/getScreeningSessionDetails.R

Defines functions getScreeningSessionDetails

Documented in getScreeningSessionDetails

#' get screening session details
#'
#' This API allows the user to view the details of a specific session.
#'
#' @param sessionID the session ID
#'
#' @return Details of the session
#'
#' @examples
#' \dontrun{
#' getScreeningSessionDetails(10)
#' }
#' @export
getScreeningSessionDetails <- function(sessionID) {
  url <- datsu_api(
    paste0("getScreeningSessionDetails/", sessionID)
  )

  out <- datsu_get(url)

  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.