summaryrefslogtreecommitdiffstats
path: root/examples/clients/clients.cs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/clients/clients.cs')
-rw-r--r--examples/clients/clients.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/clients/clients.cs b/examples/clients/clients.cs
index e275267..ecefdcd 100644
--- a/examples/clients/clients.cs
+++ b/examples/clients/clients.cs
@@ -5,9 +5,9 @@ using System.Collections.Generic;
string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY", EnvironmentVariableTarget.User);
dynamic sg = new SendGrid.SendGridAPIClient(_apiKey);
-##################################################
-# Retrieve email statistics by client type. #
-# GET /clients/stats #
+////////////////////////////////////////////////////////
+// Retrieve email statistics by client type.
+// GET /clients/stats
string queryParams = @"{
'aggregated_by': 'day',
@@ -20,9 +20,9 @@ Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
-##################################################
-# Retrieve stats by a specific client type. #
-# GET /clients/{client_type}/stats #
+////////////////////////////////////////////////////////
+// Retrieve stats by a specific client type.
+// GET /clients/{client_type}/stats
string queryParams = @"{
'aggregated_by': 'day',