Returns a list of clients

list_clients(
  session,
  start = 1,
  count = 100,
  filter = NULL,
  exact = FALSE,
  ...
)

Arguments

session

viya_connection object, obtained through session function

start

the index of the first project to return

count

The number of results per page. The default is 100.

filter

character string of client_id name to be filtered

exact

boolean, If the filter query should use "co" 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 of sasclientList class with the list of clients

Examples


if (FALSE) { # \dontrun{
clients <- list_clients(sess, filter = list(createdBy = "creatorUser", name = "projectName"))
clients
} # }