Description Usage Arguments See Also Examples
A list may or may not belong to a folder.
1 2 3 4 5 6 7 | wndr_get_folder(id = NULL)
wndr_create_folder(title, list_ids)
wndr_update_folder(id, revision, title = NULL, list_ids = NULL)
wndr_delete_folder(id, revision)
|
id |
Folder ID |
title |
Folder name |
list_ids |
List IDs |
revision |
Revision |
https://developer.wunderlist.com/documentation/endpoints/folder
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
# get all folders
wndr_get_folder()
# get a folder
wndr_get_folder(id = 1111)
# create a folder
l <- wndr_get_list()
f <- wndr_create_folder(title = "test", list_ids = l$id[1:3])
# update the folder
wndr_update_folder(id = f$id, revision = f$revision, list_ids = l$id[2:3])
# delete the folder
wndr_delete_folder(id = f$id, revision = f$revision)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.