wndr_task_comment: Task Comment API

Description Usage Arguments See Also Examples

Description

A task_comment is a comment that belongs to a task.

Usage

1
2
3
wndr_get_task_comment(id = NULL, task_id = NULL, list_id = NULL)

wndr_create_task_comment(task_id, text)

Arguments

id

Comment ID

task_id

Task ID

list_id

List ID

text

Text

See Also

https://developer.wunderlist.com/documentation/endpoints/task_comment

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
# get task comments
l <- wndr_get_list()
c <- wndr_get_task_comment(list_id = l$id[1])

# create a task comment
t <- wndr_get_task(list_id = l$id[1])
wndr_create_task_comment(task_id = t$id[1], text = "test")

## End(Not run)

yutannihilation/wunderlistr documentation built on May 4, 2019, 7:46 p.m.