devices_properties {Rduinoiot} | R Documentation |
Properties (of devices) API methods
Description
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 |
store_token |
Where your token is stored. If |
token |
A valid token created with |
silent |
Whether to hide or show API method success messages (default |
Details
Official documentation: devicesV2GetProperties
Value
A tibble showing the information about properties for given device.
Examples
## Not run:
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)
## End(Not run)
[Package Rduinoiot version 0.1.0 Index]