Skip to main content

GetTasksArgs

type GetTasksArgs = {
cursor?: string | null;
ids?: string[];
label?: string;
limit?: number;
parentId?: string;
projectId?: string;
sectionId?: string;
};

Arguments for retrieving tasks.

See

https://todoist.com/api/v1/docs#tag/Tasks/operation/get_tasks_api_v1_tasks_get

Properties

cursor?

optional cursor: string | null;

ids?

optional ids: string[];

label?

optional label: string;

limit?

optional limit: number;

parentId?

optional parentId: string;

projectId?

optional projectId: string;

sectionId?

optional sectionId: string;