blob: 25f561ff06de125b1a6cb613cf234cd07089cbf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
using System;
using SendGrid.Helpers.Mail;
using System.Collections.Generic;
string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY", EnvironmentVariableTarget.User);
dynamic sg = new SendGrid.SendGridAPIClient(_apiKey);
##################################################
# Retrieve all recent access attempts #
# GET /access_settings/activity #
string queryParams = @"{
'limit': 1
}";
dynamic response = sg.client.access_settings.activity.get(queryParams: queryParams);
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
##################################################
# Add one or more IPs to the whitelist #
# POST /access_settings/whitelist #
string data = @"{
'ips': [
{
'ip': '192.168.1.1'
},
{
'ip': '192.*.*.*'
},
{
'ip': '192.168.1.3/32'
}
]
}";
dynamic response = sg.client.access_settings.whitelist.post(requestBody: data);
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
##################################################
# Retrieve a list of currently whitelisted IPs #
# GET /access_settings/whitelist #
dynamic response = sg.client.access_settings.whitelist.get();
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
##################################################
# Remove one or more IPs from the whitelist #
# DELETE /access_settings/whitelist #
string data = @"{
'ids': [
1,
2,
3
]
}";
dynamic response = sg.client.access_settings.whitelist.delete(requestBody: data);
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
##################################################
# Retrieve a specific whitelisted IP #
# GET /access_settings/whitelist/{rule_id} #
var rule_id = "test_url_param";
dynamic response = sg.client.access_settings.whitelist._(rule_id).get();
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
##################################################
# Remove a specific IP from the whitelist #
# DELETE /access_settings/whitelist/{rule_id} #
var rule_id = "test_url_param";
dynamic response = sg.client.access_settings.whitelist._(rule_id).delete();
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers.ToString());
Console.ReadLine();
|