Skip to main content

AddProjectArgs

type AddProjectArgs = {
color?: string | number;
isFavorite?: boolean;
name: string;
parentId?: string;
viewStyle?: ProjectViewStyle;
};

Arguments for creating a new project.

See

https://todoist.com/api/v1/docs#tag/Projects/operation/create_project_api_v1_projects_post

Properties

color?

optional color: string | number;

isFavorite?

optional isFavorite: boolean;

name

name: string;

parentId?

optional parentId: string;

viewStyle?

optional viewStyle: ProjectViewStyle;