devices_tags | R Documentation |
Upsert (create/update), List and Delete tags associated to a given device
Official documentation:
devices_tags_upsert( device_id, key, value, store_token = "option", token = NULL, silent = FALSE ) devices_tags_list( device_id, store_token = "option", token = NULL, silent = FALSE ) devices_tags_delete( device_id, key, store_token = "option", token = NULL, silent = FALSE )
device_id |
The id of the device |
key |
The key of the tag (no spaces allowed) |
value |
The value of the tag (no spaces allowed) |
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 |
A tibble showing information about chosen tag or list of tags for given device
## Not run: 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" ### create/modify tag ### devices_tags_upsert(device_id = device_id, key = "1", value = "test") ### check tags list ### devices_tags_list(device_id = device_id) ### delete tag ### devices_tags_delete(device_id = device_id, key = "1") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.