items_update | R Documentation |
A method to update multiple ScienceBase items with a single call and a single HTTP service request. Can be useful for improving performance of updating a large number of items at once.
items_update(sb_id, info, ...)
sb_id |
An |
info |
list of metadata info (key-value pairs) to change on the item |
... |
Additional parameters are passed on to |
If length of sb_id
> 1, then length of info
input must be the same
One or more objects of class sbitem
in a list
## Not run:
# helper function to make a random name
aname <- function() paste0(sample(letters, size = 5, replace = TRUE), collapse = "")
res <- items_create(user_id(), title = c(aname(), aname()))
out <- items_update(res, info = list( list(title = aname()), list(title = aname()) ) )
vapply(out, "[[", "", "title")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.