Todoist.Net
8.0.0
dotnet add package Todoist.Net --version 8.0.0
NuGet\Install-Package Todoist.Net -Version 8.0.0
<PackageReference Include="Todoist.Net" Version="8.0.0" />
paket add Todoist.Net --version 8.0.0
#r "nuget: Todoist.Net, 8.0.0"
// Install Todoist.Net as a Cake Addin #addin nuget:?package=Todoist.Net&version=8.0.0 // Install Todoist.Net as a Cake Tool #tool nuget:?package=Todoist.Net&version=8.0.0
Todoist.Net
A Todoist Sync API client for .NET.
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 quickAddItem = new QuickAddItem("Task title @Label1 #Project1 +ExampleUser");
var task = await client.Items.QuickAddAsync(quickAddItem);
Simple API calls
// Get all resources (labels, projects, tasks, notes etc.).
var resources = await client.GetResourcesAsync();
// Get only projects and labels.
var projectsAndLabels = await client.GetResourcesAsync(ResourceType.Projects, ResourceType.Labels);
// Get only projects.
var projectsOnly = await client.GetResourcesAsync(ResourceType.Projects);
// Alternatively you can use this API to get projects.
var projects = await client.Projects.GetAsync();
// Add a task with a note.
var taskId = await client.Items.AddAsync(new Item("New task"));
await client.Notes.AddToItemAsync(new Note("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 note in one request.
// Create a new transaction.
var transaction = client.CreateTransaction();
// These requests are queued and will be executed later.
var projectId = await transaction.Project.AddAsync(new Project("New project"));
var taskId = await transaction.Items.AddAsync(new Item("New task", projectId));
await transaction.Notes.AddToItemAsync(new Note("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 UpdateItem("TASK_ID");
task.Unset(t => t.DueDate);
await client.Items.UpdateAsync(task);
Product | Versions 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. |
.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. |
-
.NETFramework 4.6.2
- Microsoft.CSharp (>= 4.7.0)
- System.Text.Json (>= 8.0.4)
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
- System.Text.Json (>= 8.0.4)
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 | |
---|---|---|---|
8.0.0 | 1,849 | 7/10/2024 | |
7.0.0 | 239 | 6/3/2024 | |
6.1.0 | 696 | 2/5/2024 | |
6.0.0 | 579 | 11/1/2023 | |
5.1.0 | 590 | 8/31/2023 | |
5.0.0 | 711 | 4/2/2023 | |
4.0.0 | 969 | 12/27/2022 | |
3.0.1 | 1,227 | 10/10/2022 | |
3.0.0 | 856 | 10/10/2022 | |
2.2.2 | 1,418 | 12/21/2021 | |
2.2.1 | 872 | 12/20/2021 | |
2.2.0 | 3,989 | 11/25/2021 | |
2.1.1 | 1,991 | 8/31/2020 | |
2.1.0 | 1,906 | 11/25/2019 | |
2.0.0 | 1,546 | 4/22/2019 | |
1.5.0 | 1,415 | 3/27/2019 | |
1.4.2 | 1,649 | 11/20/2018 | |
1.4.1 | 1,879 | 6/10/2018 | |
1.4.0 | 1,849 | 3/7/2018 | |
1.3.3 | 1,640 | 11/4/2017 | |
1.3.2 | 1,801 | 7/31/2017 | |
1.3.1 | 1,679 | 7/26/2017 | |
1.3.0 | 1,768 | 6/18/2017 | |
1.2.1 | 1,679 | 5/9/2017 | |
1.2.0 | 1,683 | 4/28/2017 | |
1.1.5 | 1,651 | 4/27/2017 | |
1.1.4 | 1,692 | 4/6/2017 | |
1.1.2 | 1,691 | 1/31/2017 | |
1.1.1 | 1,672 | 1/29/2017 | |
1.1.0 | 1,767 | 1/19/2017 | |
1.0.0 | 1,705 | 12/7/2016 |