0

List Uncompleted Tasks

by
Published Jun 6, 2022

Returns a list of uncompleted tasks by project, section, and/or label. [See the docs here](https://developer.todoist.com/rest/v2/#get-active-tasks)

Script todoist Verified

The script

Submitted by hugo697 Bun
Verified 398 days ago
1
import { TodoistApi } from '@doist/todoist-api-typescript'
2
import { v9 as Todoist } from 'todoist'
3

4
type Todoist = {
5
	Token: string
6
}
7

8
export async function main(resource: Todoist) {
9
	const api = new TodoistApi(resource.Token)
10
	const tasks = await api.getTasks()
11
	return tasks.filter((task) => !task.isCompleted)
12
}
13