Description Usage Arguments See Also Examples
A list of ordered, unique integers related to a users's lists or a list's tasks or a task's subtasks.
1 2 3 4 5 6 7 8 9 10 11 | wndr_get_list_position(id = NULL)
wndr_update_list_position(id, revision, values)
wndr_get_task_position(id = NULL)
wndr_update_task_position(id, revision, values)
wndr_get_subtask_position(id = NULL)
wndr_update_subtask_position(id, revision, values)
|
id |
Position ID |
revision |
Revision |
values |
Positions |
https://developer.wunderlist.com/documentation/endpoints/positions
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
# get all list positions
p <- wndr_get_list_position()
# get a list position
wndr_get_list_position(id = 1111)
# update the list position
wndr_update_list_position(id = p$id[1], values = rev(p$values[[1]]), revision = p$revision[1])
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.