Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Comment

John Rivs edited this page Aug 9, 2015 · 2 revisions

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

Method Description Arguments
getComments Show all the comments in a list or task string $entity array $attributes = []
getComment Show a comment int $commentId
createComment Create a new comment for a task array $attributes = []

Examples

$w->getComments('task', [
    'task_id' => 9876
]);
$w->getComments('list', [
    'list_id' => 1234
]);

$w->getComment(14740041);

$w->createComment([
    'task_id' => 9876,
    'text'    => 'That seems easy to do.'
]);
Clone this wiki locally