List properties associated to a given device
Usage
devices_properties_list(
device_id,
show_deleted = FALSE,
store_token = "option",
token = NULL,
silent = FALSE
)
Arguments
- device_id
The id of the device
- show_deleted
If
TRUE
, shows the soft deleted properties. Default toFALSE
- store_token
Where your token is stored. If
option
it will be retrieved from the .Rprofile (not cross-session and default), ifenvir
it will be retrieved from environmental variables list (cross-session)- token
A valid token created with
create_auth_token
or manually. It notNULL
it has higher priority thenstore_token
- silent
Whether to hide or show API method success messages (default
FALSE
)
Details
Official documentation: devicesV2GetProperties
Examples
if (FALSE) {
library(dplyr)
# Sys.setenv(ARDUINO_API_CLIENT_ID = 'INSERT CLIENT_ID HERE')
# Sys.setenv(ARDUINO_API_CLIENT_SECRET = 'INSERT CLIENT_SECRET HERE')
create_auth_token()
device_id = "fa7ee291-8dc8-4713-92c7-9027969e4aa1"
### check properties list ###
devices_properties_list(device_id = device_id)
}