We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eec904d commit bbfb187Copy full SHA for bbfb187
README.md
@@ -93,6 +93,7 @@ $clickup->folder("SPACE_ID")->createList("LIST_NAME");
93
### List
94
```php
95
$clickup->taskList("LIST_ID")->get();
96
+$clickup->taskList("LIST_ID")->getTasks();
97
$clickup->taskList("LIST_ID")->comments();
98
$clickup->taskList("LIST_ID")->members();
99
$clickup->taskList("LIST_ID")->getCustomFields();
src/Models/TaskList.php
@@ -26,4 +26,10 @@ public function addTask(array $data)
26
27
return $this->client()->post($this->model.DS.$this->id.DS.'task', $data);
28
}
29
+
30
+ public function getTasks(array $data=[]) {
31
+ $this->checkId();
32
33
+ return $this->client()->get($this->model.DS.$this->id.DS.'task', $data);
34
+ }
35
0 commit comments