R/getScreeningSessionMessages.R

Defines functions getScreeningSessionMessages

Documented in getScreeningSessionMessages

#' get screening session messages
#'
#' A list of the messages for the specified session ID
#'
#' @param sessionID the session ID
#'
#' @return List of the messages for the specified session
#'
#' @examples
#' \dontrun{
#' messages <- getScreeningSessionMessages(10)
#' }
#' @export
getScreeningSessionMessages <- function(sessionID) {
  url <- datsu_api(
    paste0("getScreeningSessionMessages/", 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.