-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Mike Pham edited this page Apr 29, 2018
·
1 revision
Create a new poste.io client.
var client = new PosteioClient("mail.example.com", "admin@example.com", "password123");
var mailboxes = await client.Mailbox.All();Create a new Radarr client.
var factory = new RadarrClientFactory();
var client = factory.Create("http://localhost:7878").SetApiKey("APIKEY");
var movies = await client.Movies.All();Create a new Sonarr client.
var factory = new SonarrClientFactory();
var client = factory.Create("http://localhost:8989").SetApiKey("APIKEY");
var series = await client.Series.All();