View source: R/update_resource.R
update_resource | R Documentation |
Update resources via Trello API.
update_resource(
resource,
id = NULL,
path = NULL,
body = NULL,
token = NULL,
on.error = c("stop", "warn", "message"),
verbose = FALSE,
handle = NULL,
encode,
response
)
resource |
Model name, eg. |
id |
Model id. |
path |
Path. |
body |
A named list. |
token |
An object of class
|
on.error |
Behavior when HTTP status >= 300, defaults to |
verbose |
Whether to pass |
handle |
Passed to |
encode, response |
Deprecated. |
See Trello API reference for more info about what elements can be included in PUT request body.
## Not run:
# Get token with write access
key = Sys.getenv("MY_TRELLO_KEY")
secret = Sys.getenv("MY_TRELLO_SECRET")
token = get_token("my_app", key = key, secret = secret,
scope = c("read", "write"))
# Get board ID
url = "Your board URL"
bid = get_id_board(url, token)
# Get cards and extract ID of the first one
cid = get_board_cards(bid, token)$id[1]
# Content for the new card
payload = list(
id = cid,
name = "A new card name",
desc = "Description - updated by trelloR",
pos = "top" #put card on the top of a list
)
# Update card's name, descriptionand position
update_resource("card", id = cid, body = payload, token = token)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.