if (FALSE) {
# 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 lists on that board, extract ID of the first one
lid = get_board_lists(bid, token)$id[1]
# Content for the new card
payload = list(
idList = lid,
name = "A new card",
desc = "#This card has been created by trelloR",
pos = "bottom"
)
# Create card and store the response (to capture the ID
# of the newly created resource)
r = create_resource("card", body = payload, token = token)
# Get ID of the new card
r$id
}
Run the code above in your browser using DataLab