diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-06-14 10:22:39 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-06-14 10:22:39 -0700 |
commit | 1e2111f09142552d7dde4e18f116835dec91ed86 (patch) | |
tree | 1de111c549454450ce5a45aa129726132db217b5 /SendGrid/SendGridMail/Web/IWebApi.cs | |
parent | 5ee89f857c09d79e507483bd807727bb6c4d7057 (diff) | |
parent | 2e52cfb07decb924a961b5c75ece1b9e79ab973c (diff) | |
download | sendgrid-csharp-1e2111f09142552d7dde4e18f116835dec91ed86.zip sendgrid-csharp-1e2111f09142552d7dde4e18f116835dec91ed86.tar.gz sendgrid-csharp-1e2111f09142552d7dde4e18f116835dec91ed86.tar.bz2 |
Diffstat (limited to 'SendGrid/SendGridMail/Web/IWebApi.cs')
-rw-r--r-- | SendGrid/SendGridMail/Web/IWebApi.cs | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/SendGrid/SendGridMail/Web/IWebApi.cs b/SendGrid/SendGridMail/Web/IWebApi.cs deleted file mode 100644 index 52d4cb2..0000000 --- a/SendGrid/SendGridMail/Web/IWebApi.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System;
-using System.Collections.Generic;
-
-namespace SendGridMail.Web
-{
- interface IWebApi
- {
- String user { get; set; }
- String pass { get; set; }
-
- String GetBounces(int date, String days, DateTime start_date, DateTime end_date, int limit, int offset, int type, String email);
- void DeleteBounces(DateTime start_date, DateTime end_date, String type, String email);
- String GetBlocks(int days, DateTime start_date, DateTime end_date, String email);
- void DeleteBlocks(String email);
- String GetEmailParse(String hostname, String url);
- void SetEmailParse(String hostname, String url);
- void EditEmailParse(String hostname, String url);
- void DeleteEmailParse(String hostname);
- String GetNotificationUrl();
- void SetNotificationUrl(String url);
- void DeleteNotificationUrl();
- String GetFilter();
- void ActivateFilter(String name);
- void DeactivateFilter(String name);
- void SetupFilter(String user, String password, Dictionary<String, String> args);
- String GetFilterSettings(String name);
- void GetInvalidEmails(int date, int days, DateTime start_date, DateTime end_date, int limit, int offset, String email);
- void DeleteInvalidEmails(DateTime start_date, DateTime end_date, String email);
- String CountInvalidEmails(DateTime start_date, DateTime end_date);
- String GetProfile();
- void UpdateProfile(String First_name, String last_name, String address, String city, String state, String country, int zip, int phone, String website);
- void SetUsername(String username);
- void SetPassword(String password, String confpass);
- void SetEmail(String email);
- String GetSpamReports(int date, int days, DateTime start_date, DateTime end_date, int limit, int offset, String email);
- void DeleteSpamReports(DateTime start_date, DateTime end_date, String email);
- String GetStats(int days, DateTime start_date, DateTime end_date);
- String GetAggregateStats();
- String GetCategoryStats();
- String GetCategoryStats(String category, int days, DateTime start_date, DateTime end_date);
- String GetUnsubscribes(int date, int days, DateTime start_date, DateTime end_date, int limit, int offset, String email);
- void DeleteUnsubscribes(DateTime start_date, DateTime end_date, String email);
- void AddUnsubscribes(String email);
- }
-}
|