things_tags | R Documentation |
Upsert (create/update), List and Delete tags associated to a given thing
Official documentation:
things_tags_upsert( thing_id, key, value, store_token = "option", token = NULL, silent = FALSE ) things_tags_list( thing_id, store_token = "option", token = NULL, silent = FALSE ) things_tags_delete( thing_id, key, store_token = "option", token = NULL, silent = FALSE )
thing_id |
The id of the thing |
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 thing
## 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() thing_id = "b6822400-2f35-4d93-b3e7-be919bdc5eba" ### create/modify tag ### things_tags_upsert(thing_id = thing_id, key = "1", value = "test") ### check tags list ### things_tags_list(thing_id = thing_id) ### delete tag ### things_tags_delete(thing_id = thing_id, key = "1") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.