Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 414 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 414 Bytes

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);
}