R/getRoles.R

Defines functions getRoles

Documented in getRoles

#' Get a account roles
#' 
#' Get a list of roles for an account
#' @param accountID Account ID of page
#' @param server Test, beta, production, or other name in R.environ OR full url of server
#' @param ... Optional page options to pass to processRequest
#' @export

getRoles <- function(accountID, server = "test", ...) {
        
        url <- loadURL(server)
        
        url$path <- "api/v1/accounts/accountID/roles"
        url$path <- sub("accountID", accountID, url$path)
        
        url$query <- list(exclude = NULL)
        
        ##Pass the url to the request processor
        results <- processRequest(url, ...)
        
        return(results)
}
erikpal/bRush documentation built on May 9, 2023, 8:27 p.m.