revenera_auth {reveneraR} | R Documentation |
A session must first be established before querying the API. This is done using your Revenera username and password.
revenera_auth(rev_username, rev_password)
rev_username |
Revenera username. |
rev_password |
Revenera password. |
It is not recommended that these values be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
A list with details on connection to the Revenera API.
## Not run:
rev_user <- "my_username"
rev_pwd <- "super_secret"
product_ids_list <- c("123", "456", "789")
start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6)
end_date <- Sys.Date() - 1
session_id <- revenera_auth(rev_user, rev_pwd)
## End(Not run)