Return a data.frame of metadata of available models/decisions

list_modules(
  session,
  filters = list(),
  start = 0,
  limit = 20,
  verbose = FALSE,
  exact = FALSE,
  ...
)

Arguments

session

viya_connection object, obtained through session function

filters

list of of names vectors for filter parameters (createdBy, modifiedBy, name). By default it will use the contains operation. For more info visit https://developer.sas.com/apis/rest/Topics/#filters.

start

the index of the first module to return

limit

maximum number of modules to return

verbose

logical, return print API call information

exact

boolean, If the filter query should use "contains" for partial match or "eq" for exact match

...

additional parameters to be passed to httr::GET such as httr::add_headers

Value

A data.frame with the list of models

Examples


if (FALSE) { # \dontrun{
models <- list_modules(sess, filters = list(createdBy = 'myUser'))
models
} # }