diff options
Diffstat (limited to 'examples/scopes')
-rw-r--r-- | examples/scopes/scopes.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/scopes/scopes.cs b/examples/scopes/scopes.cs index 05191af..c5a5c68 100644 --- a/examples/scopes/scopes.cs +++ b/examples/scopes/scopes.cs @@ -5,9 +5,9 @@ using System.Collections.Generic; string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY", EnvironmentVariableTarget.User); dynamic sg = new SendGrid.SendGridAPIClient(_apiKey); -################################################## -# Retrieve a list of scopes for which this user has access. # -# GET /scopes # +//////////////////////////////////////////////////////// +// Retrieve a list of scopes for which this user has access. +// GET /scopes dynamic response = sg.client.scopes.get(); Console.WriteLine(response.StatusCode); |