Nothing
#' get screening session list
#'
#' This API allows the user to screen a file using the API
#'
#' @param dataSetVerID the dataset version id
#' @param year filter by year, optional
#' @param country filter by country, optional
#'
#' @return The details of the sessions
#'
#' @examples
#' \dontrun{
#' getScreeningSessionsList(145)
#' getScreeningSessionsList(145, year = 2020)
#' }
#' @export
getScreeningSessionsList <- function(dataSetVerID, year = NULL, country = NULL) {
url <- datsu_api(
paste0("getScreeningSessionsList/", dataSetVerID),
year = year,
country = country
)
out <- datsu_get(url)
out
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.