list_clients.Rd
Returns a list of clients
list_clients(
session,
start = 1,
count = 100,
filter = NULL,
exact = FALSE,
...
)
viya_connection object, obtained through session
function
the index of the first project to return
The number of results per page. The default is 100.
character string of client_id name to be filtered
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
A data.frame
of sasclientList
class with the list of clients
if (FALSE) { # \dontrun{
clients <- list_clients(sess, filter = list(createdBy = "creatorUser", name = "projectName"))
clients
} # }