Todoist.Net 11.1.0

dotnet add package Todoist.Net --version 11.1.0
                    
NuGet\Install-Package Todoist.Net -Version 11.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Todoist.Net" Version="11.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Todoist.Net" Version="11.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Todoist.Net" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Todoist.Net --version 11.1.0
                    
#r "nuget: Todoist.Net, 11.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Todoist.Net@11.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Todoist.Net&version=11.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Todoist.Net&version=11.1.0
                    
Install as a Cake Tool

Todoist.Net

Quality Gate NuGet

A Todoist API client for .NET.

Upgrading from 10.x? Version 11.0.0 moves to the unified Todoist API v1 and renames much of the public surface (ItemsTasks, NotesComments, and more). See the 11.0.0 release notes for the full migration table.

Installation

The library is available as a Nuget package.

Install-Package Todoist.Net

Get started

Creating Todoist client

ITodoistClient client = new TodoistClient("API token");

Quick add

Implementation of the Quick Add Task available in the official clients.

var quickAddTask = new QuickAddTask("Task title @Label1 #Project1 +ExampleUser");
var task = await client.Tasks.QuickAddAsync(quickAddTask);

Simple API calls

// Get all resources (labels, projects, tasks, comments etc.).
var resources = await client.SyncResourcesAsync();

// Get only projects and labels.
var projectsAndLabels = await client.SyncResourcesAsync(new[] { ResourceType.Projects, ResourceType.Labels });

// Get only projects.
var projectsOnly = await client.SyncResourcesAsync(new[] { ResourceType.Projects });

// Alternatively you can use this API to get projects.
var projects = await client.Projects.GetAsync();

// Add a task with a comment.
var taskId = await client.Tasks.AddAsync(new AddTask("New task"));
await client.Comments.AddToTaskAsync(new Comment("Task description"), taskId);

Transactions (Batching)

Batching: reading and writing of multiple resources can be done in a single HTTP request.

Add a new project, task and comment in one request.

// Create a new transaction.
var transaction = client.CreateTransaction();

// These requests are queued and will be executed later.
var projectId = await transaction.Projects.AddAsync(new AddProject("New project"));
var taskId = await transaction.Tasks.AddAsync(new AddTask("New task", projectId));
await transaction.Comments.AddToTaskAsync(new Comment("Task description"), taskId);

// Execute all the requests in the transaction in a single HTTP request.
await transaction.CommitAsync();

Sending null values when updating entities.

When updating entities, Todoist API only updates properties included in the request body, using a PATCH request style. That's why all properties with null values are not included by default, to allow updating without fetching the entity first, since including null properties will update them to null.

However, if you want to intentionally send a null value to the API, you need to use the Unset extension method, for example:

// This code removes a task's due date.
var task = new UpdateTask("TASK_ID");
task.Unset(t => t.DueDate);

await client.Tasks.UpdateAsync(task);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
11.1.0 94 9/2/2026
11.0.0 84 9/2/2026
11.0.0-beta.1 2,317 2/13/2026
10.0.0 5,545 10/22/2025
9.0.0 602 2/3/2025
8.1.0 237 1/25/2025
8.0.0 3,384 7/10/2024
7.0.0 525 6/3/2024
6.1.0 847 2/5/2024
6.0.0 720 11/1/2023
5.1.0 2,149 8/31/2023
5.0.0 912 4/2/2023
4.0.0 1,164 12/27/2022
3.0.1 1,768 10/10/2022 3.0.1 is deprecated.
3.0.0 1,244 10/10/2022 3.0.0 is deprecated.
2.2.2 1,705 12/21/2021 2.2.2 is deprecated.
2.2.1 1,157 12/20/2021 2.2.1 is deprecated.
2.2.0 4,299 11/25/2021 2.2.0 is deprecated.
2.1.1 2,348 8/31/2020 2.1.1 is deprecated.
2.1.0 2,434 11/25/2019 2.1.0 is deprecated.
Loading failed