Description Usage Arguments See Also Examples
A task_comment is a comment that belongs to a task.
1 2 3  | wndr_get_task_comment(id = NULL, task_id = NULL, list_id = NULL)
wndr_create_task_comment(task_id, text)
 | 
id | 
 Comment ID  | 
task_id | 
 Task ID  | 
list_id | 
 List ID  | 
text | 
 Text  | 
https://developer.wunderlist.com/documentation/endpoints/task_comment
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)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.