get_product_properties {reveneraR} | R Documentation |
Get All Properties for a List of Product Ids
Description
Returns all of the unique properties (standard and custom) for each product id by property category.
Usage
get_product_properties(rev_product_ids)
Arguments
rev_product_ids |
A vector of Revenera product id's for which you want active user data. |
Details
It is not recommended that your username 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.
Value
Data frame with properties and property attributes by product id.
Examples
## Not run:
rev_user <- "my_username"
rev_pwd <- "super_secret"
logout(rev_user, rev_pwd)
Sys.sleep(30)
revenera_auth(rev_user, rev_pwd)
product_ids_list <- c("123", "456", "789")
product_properties <- get_product_properties(product_ids_list)
## End(Not run)
[Package reveneraR version 1.0.1 Index]