list_destinations.Rd
Returns a list of Publish Destinations
list_destinations(
session,
start = 0,
limit = 10,
filters = list(),
exact = FALSE,
...
)
viya_connection object, obtained through session
function
the index of the first project to return
maximum number of projects to return
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
.
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
A data.frame
with the list of projects
if (FALSE) { # \dontrun{
destinations <- list_destinations(sess)
destinations
} # }