diff options
Diffstat (limited to 'examples/apikeys/apikeys.cs')
-rw-r--r-- | examples/apikeys/apikeys.cs | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/examples/apikeys/apikeys.cs b/examples/apikeys/apikeys.cs new file mode 100644 index 0000000..763dc0f --- /dev/null +++ b/examples/apikeys/apikeys.cs @@ -0,0 +1,84 @@ +using System; +using SendGrid.Helpers.Mail; +using System.Collections.Generic; +using System.Net; + +string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY", EnvironmentVariableTarget.User); +dynamic sg = new SendGrid.SendGridAPIClient(_apiKey); + +################################################## +# Create API keys # +# POST /api_keys # + +string data = @"{ + 'name': 'My API Key', + 'scopes': [ + 'mail.send', + 'alerts.create', + 'alerts.read' + ] +}"; +dynamic response = sg.client.api_keys.post(requestBody: data); +Console.WriteLine(response.StatusCode); +Console.WriteLine(response.ResponseBody.ReadAsStringAsync().Result); +Console.WriteLine(response.ResponseHeaders.ToString()); + +################################################## +# Retrieve all API Keys belonging to the authenticated user # +# GET /api_keys # + +dynamic response = sg.client.api_keys.get(); +Console.WriteLine(response.StatusCode); +Console.WriteLine(response.ResponseBody.ReadAsStringAsync().Result); +Console.WriteLine(response.ResponseHeaders.ToString()); + +################################################## +# Update the name & scopes of an API Key # +# PUT /api_keys/{api_key_id} # + +string data = @"{ + 'name': 'A New Hope', + 'scopes': [ + 'user.profile.read', + 'user.profile.update' + ] +}"; +var api_key_id = "test_url_param"; +dynamic response = sg.client.api_keys._(api_key_id).put(requestBody: data); +Console.WriteLine(response.StatusCode); +Console.WriteLine(response.ResponseBody.ReadAsStringAsync().Result); +Console.WriteLine(response.ResponseHeaders.ToString()); + +################################################## +# Update API keys # +# PATCH /api_keys/{api_key_id} # + +string data = @"{ + 'name': 'A New Hope' +}"; +var api_key_id = "test_url_param"; +dynamic response = sg.client.api_keys._(api_key_id).patch(requestBody: data); +Console.WriteLine(response.StatusCode); +Console.WriteLine(response.ResponseBody.ReadAsStringAsync().Result); +Console.WriteLine(response.ResponseHeaders.ToString()); + +################################################## +# Retrieve an existing API Key # +# GET /api_keys/{api_key_id} # + +var api_key_id = "test_url_param"; +dynamic response = sg.client.api_keys._(api_key_id).get(); +Console.WriteLine(response.StatusCode); +Console.WriteLine(response.ResponseBody.ReadAsStringAsync().Result); +Console.WriteLine(response.ResponseHeaders.ToString()); + +################################################## +# Delete API keys # +# DELETE /api_keys/{api_key_id} # + +var api_key_id = "test_url_param"; +dynamic response = sg.client.api_keys._(api_key_id).delete(); +Console.WriteLine(response.StatusCode); +Console.WriteLine(response.ResponseBody.ReadAsStringAsync().Result); +Console.WriteLine(response.ResponseHeaders.ToString()); + |