GetProjectsArgs
type GetProjectsArgs = {
cursor?: string | null;
folderId?: string | null;
limit?: number;
workspaceId?: string | null;
};
Arguments for retrieving projects.
See
https://developer.todoist.com/api/v1/#tag/Projects/operation/get_projects_api_v1_projects_get
Properties
cursor?
optional cursor: string | null;
folderId?
optional folderId: string | null;
Filter projects to only those in this folder. If provided, workspaceId is ignored.
limit?
optional limit: number;
workspaceId?
optional workspaceId: string | null;
Filter projects to only those in this workspace. Ignored if folderId is also provided.