Skip to content

tnakamura/Todoist

Repository files navigation

Todoist API C# Client

This is the unofficial C# API client for the Todoist REST API.

Installation

Install-Package Todoist

Usage

An example of initializing the API client and fetching a user's tasks:

using Todoist;

var client = new TodoistClient("YOURTOKEN");

var tasks = await client.Tasks.GetAllAsync();

foreach (var task in tasks)
{
    Console.WriteLine(task.Content);
}

About

The unofficial Todoist C# API library

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages