Skip to content
Mike Pham edited this page Apr 29, 2018 · 1 revision

Platform Libraries

Clients

Poste.io

Create a new poste.io client.

var client = new PosteioClient("mail.example.com", "admin@example.com", "password123");
var mailboxes = await client.Mailbox.All();

Radarr

Create a new Radarr client.

var factory = new RadarrClientFactory();
var client = factory.Create("http://localhost:7878").SetApiKey("APIKEY");
var movies = await client.Movies.All();

Sonarr

Create a new Sonarr client.

var factory = new SonarrClientFactory();
var client = factory.Create("http://localhost:8989").SetApiKey("APIKEY");
var series = await client.Series.All();
Clone this wiki locally