Returns a list of Publish Destinations

list_destinations(
  session,
  start = 0,
  limit = 10,
  filters = list(),
  exact = FALSE,
  ...
)

Arguments

session

viya_connection object, obtained through session function

start

the index of the first project to return

limit

maximum number of projects to return

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.

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 projects

Examples


if (FALSE) { # \dontrun{
destinations <- list_destinations(sess)
destinations
} # }