sendgrid_webapi 0.0.2 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +132 -0
  3. data/.circleci/setup-rubygems.sh +5 -0
  4. data/.gitignore +27 -1
  5. data/.rspec +2 -2
  6. data/.ruby-version +1 -0
  7. data/.tool-versions +1 -0
  8. data/MIT-LICENSE +20 -0
  9. data/README.rdoc +103 -79
  10. data/lib/api_key/management.rb +33 -0
  11. data/lib/api_key/modules.rb +10 -0
  12. data/lib/apikey_client.rb +11 -0
  13. data/lib/base.rb +47 -13
  14. data/lib/helper.rb +8 -8
  15. data/lib/sendgrid_webapi.rb +1 -0
  16. data/lib/sub_user/modules.rb +15 -15
  17. data/lib/version.rb +2 -2
  18. data/lib/web_api/blocks.rb +5 -0
  19. data/lib/web_api/bounces.rb +5 -0
  20. data/lib/web_api/modules.rb +15 -11
  21. data/lib/web_api/version.rb +1 -1
  22. data/lib/webapi_client.rb +1 -1
  23. data/sendgrid_webapi.gemspec +12 -8
  24. data/spec/cassettes/client/_modules/_block/should_get_block_emails.yml +29 -41
  25. data/spec/cassettes/client/_modules/_block/should_get_totals_blocks.yml +36 -0
  26. data/spec/cassettes/client/_modules/_block/should_try_delete_not_existing_block_email.yml +29 -42
  27. data/spec/cassettes/client/_modules/_bounce/should_get_bounce_emails.yml +27 -31
  28. data/spec/cassettes/client/_modules/_bounce/should_get_totals_bounces.yml +36 -0
  29. data/spec/cassettes/client/_modules/_bounce/should_try_delete_not_existing_bounce_email.yml +27 -32
  30. data/spec/cassettes/client/_modules/_event_notification/should_delete_event_notification_url.yml +38 -40
  31. data/spec/cassettes/client/_modules/_event_notification/should_get_event_notification_url.yml +38 -40
  32. data/spec/cassettes/client/_modules/_event_notification/should_set_event_notification_url.yml +38 -40
  33. data/spec/cassettes/client/_modules/_invalid_email/should_get_invalid_emails.yml +27 -31
  34. data/spec/cassettes/client/_modules/_invalid_email/should_try_delete_not_existing_invalid_emails.yml +27 -32
  35. data/spec/cassettes/client/_modules/_parse_email/should_delete_parse_email.yml +73 -76
  36. data/spec/cassettes/client/_modules/_parse_email/should_get_parse_email.yml +38 -41
  37. data/spec/cassettes/client/_modules/_parse_email/should_set_parse_email.yml +38 -40
  38. data/spec/cassettes/client/_modules/_profile/should_get_profile.yml +39 -43
  39. data/spec/cassettes/client/_modules/_profile/should_set_first_name.yml +109 -117
  40. data/spec/cassettes/client/_modules/_spam/should_get_spam_emails.yml +27 -31
  41. data/spec/cassettes/client/_modules/_spam/should_try_delete_not_existing_spam_emails.yml +27 -32
  42. data/spec/cassettes/client/_modules/_unsubscribe/should_add_unsubscribe_emails.yml +27 -31
  43. data/spec/cassettes/client/_modules/_unsubscribe/should_delete_unsubscribe_email.yml +27 -31
  44. data/spec/cassettes/client/_modules/_unsubscribe/should_get_unsubscribe_emails.yml +27 -32
  45. data/spec/cassettes/client/_modules/_unsubscribe/should_try_delete_not_existing_unsubscribe_emails.yml +27 -32
  46. data/spec/cassettes/helper/_create_sub_user_account/should_create_sub_user_account.yml +248 -255
  47. data/spec/cassettes/helper/_run_sendgrid_query/should_raise_with_unsucessfull_request.yml +39 -38
  48. data/spec/cassettes/helper/_run_sendgrid_query/should_run_sendgrid_request.yml +38 -40
  49. data/spec/cassettes/sub_user/_apps/should_activate_app.yml +38 -40
  50. data/spec/cassettes/sub_user/_apps/should_deactivate_app.yml +38 -40
  51. data/spec/cassettes/sub_user/_apps/should_get_current_setting_from_one_app.yml +38 -41
  52. data/spec/cassettes/sub_user/_apps/should_return_available_apps.yml +63 -55
  53. data/spec/cassettes/sub_user/_apps/should_set_current_app.yml +73 -72
  54. data/spec/cassettes/sub_user/_authentication/should_auth_a_sub_user.yml +38 -40
  55. data/spec/cassettes/sub_user/_authentication/should_return_error_with_a_bad_sub_user.yml +38 -40
  56. data/spec/cassettes/sub_user/_bounces/should_returns_bounce_emails.yml +38 -39
  57. data/spec/cassettes/sub_user/_bounces/should_tries_to_delete_unexisting_bounce_emails.yml +38 -40
  58. data/spec/cassettes/sub_user/_event_notification/should_add_event_notification_url.yml +38 -40
  59. data/spec/cassettes/sub_user/_event_notification/should_delete_event_notification_url.yml +38 -40
  60. data/spec/cassettes/sub_user/_event_notification/should_get_event_notification_url.yml +38 -40
  61. data/spec/cassettes/sub_user/_invalid_emails/should_return_invalid_emails.yml +38 -39
  62. data/spec/cassettes/sub_user/_invalid_emails/should_tries_to_delete_unexisting_invalid_mail.yml +38 -40
  63. data/spec/cassettes/sub_user/_ip_management/should_return_all_ips_available.yml +38 -40
  64. data/spec/cassettes/sub_user/_ip_management/should_show_ip_subuser.yml +38 -40
  65. data/spec/cassettes/sub_user/_limits/should_decrements_credits_for_a_sub_user.yml +73 -77
  66. data/spec/cassettes/sub_user/_limits/should_delete_all_limits_for_a_sub_user.yml +73 -76
  67. data/spec/cassettes/sub_user/_limits/should_increments_credits_for_a_sub_user.yml +73 -77
  68. data/spec/cassettes/sub_user/_limits/should_list_the_limits_for_a_sub_user.yml +38 -40
  69. data/spec/cassettes/sub_user/_limits/should_reset_all_limits_for_a_sub_user.yml +73 -77
  70. data/spec/cassettes/sub_user/_limits/should_returns_limits_for_a_sub_user.yml +38 -40
  71. data/spec/cassettes/sub_user/_limits/should_set_total_credits.yml +38 -40
  72. data/spec/cassettes/sub_user/_management/should_add_new_subuser.yml +38 -40
  73. data/spec/cassettes/sub_user/_management/should_disable_sub_user_for_send_email.yml +38 -40
  74. data/spec/cassettes/sub_user/_management/should_enable_sub_user_for_access_to_website.yml +38 -40
  75. data/spec/cassettes/sub_user/_management/should_enable_sub_user_for_send_email.yml +38 -40
  76. data/spec/cassettes/sub_user/_management/should_update_sub_user.yml +38 -40
  77. data/spec/cassettes/sub_user/_monitor_records/should_add_existing_sub_user_to_monitor_record.yml +73 -78
  78. data/spec/cassettes/sub_user/_monitor_records/should_create_a_new_monitor_record.yml +73 -78
  79. data/spec/cassettes/sub_user/_monitor_records/should_delete_a_monitor_record.yml +73 -76
  80. data/spec/cassettes/sub_user/_monitor_records/should_edit_a_monitor_record.yml +73 -78
  81. data/spec/cassettes/sub_user/_monitor_records/should_remove_existing_sub_user_from_monitor_record.yml +73 -78
  82. data/spec/cassettes/sub_user/_parse_email/should_delete_parse_email.yml +73 -76
  83. data/spec/cassettes/sub_user/_parse_email/should_get_parse_email.yml +38 -41
  84. data/spec/cassettes/sub_user/_parse_email/should_set_parse_email.yml +38 -40
  85. data/spec/cassettes/sub_user/_spam/should_return_spam_mails.yml +38 -39
  86. data/spec/cassettes/sub_user/_spam/should_tries_to_delete_unexisting_spam_mail.yml +38 -40
  87. data/spec/cassettes/sub_user/_unsubscribes/should_add_bounce_email.yml +38 -40
  88. data/spec/cassettes/sub_user/_unsubscribes/should_delete_existing_bounce_email.yml +38 -40
  89. data/spec/cassettes/sub_user/_unsubscribes/should_delete_unexisting_bounce_email.yml +38 -40
  90. data/spec/cassettes/sub_user/_unsubscribes/should_returns_bounce_emails.yml +38 -40
  91. data/spec/client_spec.rb +7 -4
  92. data/spec/helper_spec.rb +9 -9
  93. data/spec/sub_user_spec.rb +63 -68
  94. data/test.rb +5 -0
  95. metadata +90 -58
  96. data/.travis.yml +0 -5
  97. data/spec/cassettes/sub_user/_management/should_get_all_subusers.yml +0 -54
@@ -1,144 +1,136 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
- uri: https://sendgrid.com/api/profile.set.json?api_key=pass&api_user=user&first_name=test
6
- body:
5
+ uri: https://api.sendgrid.com/api/profile.set.json?first_name=test
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- Accept-Encoding:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
11
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
- User-Agent:
15
- - Ruby
16
- response:
17
- status:
14
+ Accept:
15
+ - '*/*'
16
+ response:
17
+ status:
18
18
  code: 200
19
19
  message: OK
20
- headers:
21
- Server:
22
- - nginx/0.7.65
23
- Date:
24
- - Mon, 02 Jul 2012 14:43:22 GMT
25
- Content-Type:
20
+ headers:
21
+ Server:
22
+ - nginx/1.4.2
23
+ Date:
24
+ - Fri, 17 Jan 2014 01:52:35 GMT
25
+ Content-Type:
26
26
  - application/json
27
- Connection:
27
+ Content-Length:
28
+ - '46'
29
+ Connection:
28
30
  - keep-alive
29
- X-Powered-By:
30
- - PHP/5.3.2-1ubuntu4.14
31
- Cache-Control:
32
- - private
33
- Set-Cookie:
34
- - sendgrid_frontend=57378bb1ecb95876ef29c114134b0537:372a0116659704e02ef0c23cef9a695f42a9b4e2; expires=Wed, 01-Aug-2012 14:42:57 GMT; path=/; httponly
35
- Content-Encoding:
36
- - gzip
37
- Vary:
31
+ X-Powered-By:
32
+ - PHP/5.3.2-1ubuntu4.22
33
+ Cache-Control:
34
+ - no-cache, must-revalidate
35
+ Expires:
36
+ - '0'
37
+ Set-Cookie:
38
+ - sendgrid_frontend=4356a20d01aabddcabcef6fc846fde64:30067df8de048f3cf7f63992cab6bfcde8213eb0;
39
+ expires=Sun, 16-Feb-2014 01:52:34 GMT; path=/; httponly
40
+ Vary:
38
41
  - Accept-Encoding
39
- Content-Length:
40
- - "46"
41
- body:
42
- encoding: ASCII-8BIT
43
- string: !binary |
44
- H4sIAAAAAAAAA6pWyk0tLk5MT1WyUiouTU4GcpRqAQAAAP//AwDGVSbjFQAA
45
- AA==
46
-
42
+ body:
43
+ encoding: UTF-8
44
+ string: '{"message":"success"}'
47
45
  http_version:
48
- recorded_at: Mon, 02 Jul 2012 14:43:22 GMT
49
- - request:
46
+ recorded_at: Fri, 17 Jan 2014 01:52:35 GMT
47
+ - request:
50
48
  method: get
51
- uri: https://sendgrid.com/api/profile.get.json?api_key=pass&api_user=user
52
- body:
49
+ uri: https://api.sendgrid.com/api/profile.get.json
50
+ body:
53
51
  encoding: US-ASCII
54
- string: ""
55
- headers:
56
- Accept-Encoding:
52
+ string: ''
53
+ headers:
54
+ User-Agent:
55
+ - Faraday v0.8.9
56
+ Accept-Encoding:
57
57
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
58
- Accept:
59
- - "*/*"
60
- User-Agent:
61
- - Ruby
62
- response:
63
- status:
58
+ Accept:
59
+ - '*/*'
60
+ response:
61
+ status:
64
62
  code: 200
65
63
  message: OK
66
- headers:
67
- Server:
68
- - nginx/0.7.65
69
- Date:
70
- - Mon, 02 Jul 2012 14:43:23 GMT
71
- Content-Type:
64
+ headers:
65
+ Server:
66
+ - nginx/1.4.2
67
+ Date:
68
+ - Fri, 17 Jan 2014 01:52:36 GMT
69
+ Content-Type:
72
70
  - application/json
73
- Connection:
71
+ Content-Length:
72
+ - '210'
73
+ Connection:
74
74
  - keep-alive
75
- X-Powered-By:
76
- - PHP/5.3.2-1ubuntu4.14
77
- Cache-Control:
78
- - private
79
- Set-Cookie:
80
- - sendgrid_frontend=75b49a37e211e8065bd3423288aa73af:20046f50f3c639968ea7918c67633c3105ca3ab3; expires=Wed, 01-Aug-2012 14:42:59 GMT; path=/; httponly
81
- Content-Encoding:
82
- - gzip
83
- Vary:
75
+ X-Powered-By:
76
+ - PHP/5.3.2-1ubuntu4.22
77
+ Cache-Control:
78
+ - no-cache, must-revalidate
79
+ Expires:
80
+ - '0'
81
+ Set-Cookie:
82
+ - sendgrid_frontend=67ff9f592cc8050d14f1eb1d068de1ed:6c5136671b0d5515d7b5525c2b14a9e42a664e92;
83
+ expires=Sun, 16-Feb-2014 01:52:36 GMT; path=/; httponly
84
+ Vary:
84
85
  - Accept-Encoding
85
- Content-Length:
86
- - "211"
87
- body:
88
- encoding: ASCII-8BIT
89
- string: !binary |
90
- H4sIAAAAAAAAA3yPTQrCMBCFr1Kyrj9UW2xXikco4sJKielIg6YJyURR8e5O
91
- 2qI7A2F435t5kxxezDuwHVfACsaNWSaLVZbl6xasvvip0IrFDBSX1z8+Fyhv
92
- IQCtB9JnaR3WYyiCQ2JX/kNb71ArsGG0aSw4RzBN02jTPaISLQD+rIQ8UkLi
93
- I4yGEjOHHENS2deYPaUhlc/phF7tO7ShfVeSNK3uYNgwGW9K+A4nJ/uUFtEU
94
- 1aya7Uf0NWsuxPC8/mvv4wcAAP//AwAnWcbgMQEAAA==
95
-
86
+ body:
87
+ encoding: UTF-8
88
+ string: '[{"username":"user","email":"user","active":"true","first_name":"test","last_name":"Customer","address":"555
89
+ Any Street","address2":"","city":"City","state":"State","zip":"90000","country":"US","phone":"555-555-5555","website":"http:\/\/Website","website_access":"true"}]'
96
90
  http_version:
97
- recorded_at: Mon, 02 Jul 2012 14:43:23 GMT
98
- - request:
91
+ recorded_at: Fri, 17 Jan 2014 01:52:36 GMT
92
+ - request:
99
93
  method: get
100
- uri: https://sendgrid.com/api/profile.set.json?api_key=pass&api_user=user&first_name=Reseller
101
- body:
94
+ uri: https://api.sendgrid.com/api/profile.set.json?first_name=Reseller
95
+ body:
102
96
  encoding: US-ASCII
103
- string: ""
104
- headers:
105
- Accept-Encoding:
97
+ string: ''
98
+ headers:
99
+ User-Agent:
100
+ - Faraday v0.8.9
101
+ Accept-Encoding:
106
102
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
107
- Accept:
108
- - "*/*"
109
- User-Agent:
110
- - Ruby
111
- response:
112
- status:
103
+ Accept:
104
+ - '*/*'
105
+ response:
106
+ status:
113
107
  code: 200
114
108
  message: OK
115
- headers:
116
- Server:
117
- - nginx/0.7.65
118
- Date:
119
- - Mon, 02 Jul 2012 14:43:25 GMT
120
- Content-Type:
109
+ headers:
110
+ Server:
111
+ - nginx/1.4.2
112
+ Date:
113
+ - Fri, 17 Jan 2014 01:52:38 GMT
114
+ Content-Type:
121
115
  - application/json
122
- Connection:
116
+ Content-Length:
117
+ - '46'
118
+ Connection:
123
119
  - keep-alive
124
- X-Powered-By:
125
- - PHP/5.3.2-1ubuntu4.14
126
- Cache-Control:
127
- - private
128
- Set-Cookie:
129
- - sendgrid_frontend=c7cf07314d1b3677c5eb58f1fdb4bef6:080f5d6434c1c00cc6e8d1c37cfa0e09fc558f28; expires=Wed, 01-Aug-2012 14:43:00 GMT; path=/; httponly
130
- Content-Encoding:
131
- - gzip
132
- Vary:
120
+ X-Powered-By:
121
+ - PHP/5.3.2-1ubuntu4.22
122
+ Cache-Control:
123
+ - no-cache, must-revalidate
124
+ Expires:
125
+ - '0'
126
+ Set-Cookie:
127
+ - sendgrid_frontend=1b960a89128d4020cebd8bebb3660f0d:f1733fc40c676a64aa2fa9199ed3bdb51cf90429;
128
+ expires=Sun, 16-Feb-2014 01:52:38 GMT; path=/; httponly
129
+ Vary:
133
130
  - Accept-Encoding
134
- Content-Length:
135
- - "46"
136
- body:
137
- encoding: ASCII-8BIT
138
- string: !binary |
139
- H4sIAAAAAAAAA6pWyk0tLk5MT1WyUiouTU4GcpRqAQAAAP//AwDGVSbjFQAA
140
- AA==
141
-
131
+ body:
132
+ encoding: UTF-8
133
+ string: '{"message":"success"}'
142
134
  http_version:
143
- recorded_at: Mon, 02 Jul 2012 14:43:25 GMT
144
- recorded_with: VCR 2.1.1
135
+ recorded_at: Fri, 17 Jan 2014 01:52:39 GMT
136
+ recorded_with: VCR 2.8.0
@@ -1,40 +1,36 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
- uri: https://sendgrid.com/api/spamreports.get.json?api_key=pass&api_user=user
6
- body:
5
+ uri: https://api.sendgrid.com/api/spamreports.get.json
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- Accept-Encoding:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
11
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
- User-Agent:
15
- - Ruby
16
- response:
17
- status:
14
+ Accept:
15
+ - '*/*'
16
+ response:
17
+ status:
18
18
  code: 200
19
19
  message: OK
20
- headers:
21
- Server:
22
- - nginx/0.7.65
23
- Date:
24
- - Mon, 02 Jul 2012 14:43:00 GMT
25
- Content-Type:
20
+ headers:
21
+ Server:
22
+ - nginx/1.4.2
23
+ Date:
24
+ - Fri, 17 Jan 2014 01:48:27 GMT
25
+ Content-Type:
26
26
  - text/html
27
- Transfer-Encoding:
27
+ Transfer-Encoding:
28
28
  - chunked
29
- Connection:
29
+ Connection:
30
30
  - keep-alive
31
- Content-Encoding:
32
- - gzip
33
- body:
34
- encoding: ASCII-8BIT
35
- string: !binary |
36
- H4sIAAAAAAAAA4uOBQApu0wNAgAAAA==
37
-
31
+ body:
32
+ encoding: UTF-8
33
+ string: '[]'
38
34
  http_version:
39
- recorded_at: Mon, 02 Jul 2012 14:43:01 GMT
40
- recorded_with: VCR 2.1.1
35
+ recorded_at: Fri, 17 Jan 2014 01:48:27 GMT
36
+ recorded_with: VCR 2.8.0
@@ -1,41 +1,36 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
- uri: https://sendgrid.com/api/spamreports.delete.json?api_key=pass&api_user=user&email=test@example.com
6
- body:
5
+ uri: https://api.sendgrid.com/api/spamreports.delete.json?email=test@example.com
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- Accept-Encoding:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
11
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
- User-Agent:
15
- - Ruby
16
- response:
17
- status:
14
+ Accept:
15
+ - '*/*'
16
+ response:
17
+ status:
18
18
  code: 200
19
19
  message: OK
20
- headers:
21
- Server:
22
- - nginx/0.7.65
23
- Date:
24
- - Mon, 02 Jul 2012 14:43:02 GMT
25
- Content-Type:
20
+ headers:
21
+ Server:
22
+ - nginx/1.4.2
23
+ Date:
24
+ - Fri, 17 Jan 2014 01:48:28 GMT
25
+ Content-Type:
26
26
  - text/html
27
- Transfer-Encoding:
27
+ Transfer-Encoding:
28
28
  - chunked
29
- Connection:
29
+ Connection:
30
30
  - keep-alive
31
- Content-Encoding:
32
- - gzip
33
- body:
34
- encoding: ASCII-8BIT
35
- string: !binary |
36
- H4sIAAAAAAAAA6tWyk0tLk5MT1WyUlByzU3MzFFIyU8tVsjLL1FIrcgsLlGq
37
- BQBKtWgQIwAAAA==
38
-
31
+ body:
32
+ encoding: UTF-8
33
+ string: '{"message": "Email does not exist"}'
39
34
  http_version:
40
- recorded_at: Mon, 02 Jul 2012 14:43:02 GMT
41
- recorded_with: VCR 2.1.1
35
+ recorded_at: Fri, 17 Jan 2014 01:48:28 GMT
36
+ recorded_with: VCR 2.8.0
@@ -1,40 +1,36 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
- uri: https://sendgrid.com/api/unsubscribes.add.json?api_key=pass&api_user=user&email=test@example.com
6
- body:
5
+ uri: https://api.sendgrid.com/api/unsubscribes.add.json?email=test@example.com
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- Accept-Encoding:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
11
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
- User-Agent:
15
- - Ruby
16
- response:
17
- status:
14
+ Accept:
15
+ - '*/*'
16
+ response:
17
+ status:
18
18
  code: 200
19
19
  message: OK
20
- headers:
21
- Server:
22
- - nginx/0.7.65
23
- Date:
24
- - Mon, 02 Jul 2012 14:43:03 GMT
25
- Content-Type:
20
+ headers:
21
+ Server:
22
+ - nginx/1.4.2
23
+ Date:
24
+ - Fri, 17 Jan 2014 01:49:15 GMT
25
+ Content-Type:
26
26
  - text/html
27
- Transfer-Encoding:
27
+ Transfer-Encoding:
28
28
  - chunked
29
- Connection:
29
+ Connection:
30
30
  - keep-alive
31
- Content-Encoding:
32
- - gzip
33
- body:
34
- encoding: ASCII-8BIT
35
- string: !binary |
36
- H4sIAAAAAAAAA6tWyk0tLk5MT1WyUlAqLk1OBvKUagFuMoIgFgAAAA==
37
-
31
+ body:
32
+ encoding: UTF-8
33
+ string: '{"message": "success"}'
38
34
  http_version:
39
- recorded_at: Mon, 02 Jul 2012 14:43:04 GMT
40
- recorded_with: VCR 2.1.1
35
+ recorded_at: Fri, 17 Jan 2014 01:49:15 GMT
36
+ recorded_with: VCR 2.8.0
@@ -1,40 +1,36 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
- uri: https://sendgrid.com/api/unsubscribes.delete.json?api_key=pass&api_user=user&email=test@example.com
6
- body:
5
+ uri: https://api.sendgrid.com/api/unsubscribes.delete.json?email=test@example.com
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- Accept-Encoding:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
11
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
- User-Agent:
15
- - Ruby
16
- response:
17
- status:
14
+ Accept:
15
+ - '*/*'
16
+ response:
17
+ status:
18
18
  code: 200
19
19
  message: OK
20
- headers:
21
- Server:
22
- - nginx/0.7.65
23
- Date:
24
- - Mon, 02 Jul 2012 14:43:06 GMT
25
- Content-Type:
20
+ headers:
21
+ Server:
22
+ - nginx/1.4.2
23
+ Date:
24
+ - Fri, 17 Jan 2014 01:49:18 GMT
25
+ Content-Type:
26
26
  - text/html
27
- Transfer-Encoding:
27
+ Transfer-Encoding:
28
28
  - chunked
29
- Connection:
29
+ Connection:
30
30
  - keep-alive
31
- Content-Encoding:
32
- - gzip
33
- body:
34
- encoding: ASCII-8BIT
35
- string: !binary |
36
- H4sIAAAAAAAAA6tWyk0tLk5MT1WyUlAqLk1OBvKUagFuMoIgFgAAAA==
37
-
31
+ body:
32
+ encoding: UTF-8
33
+ string: '{"message": "success"}'
38
34
  http_version:
39
- recorded_at: Mon, 02 Jul 2012 14:43:06 GMT
40
- recorded_with: VCR 2.1.1
35
+ recorded_at: Fri, 17 Jan 2014 01:49:18 GMT
36
+ recorded_with: VCR 2.8.0
@@ -1,41 +1,36 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
- uri: https://sendgrid.com/api/unsubscribes.get.json?api_key=pass&api_user=user
6
- body:
5
+ uri: https://api.sendgrid.com/api/unsubscribes.get.json
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- Accept-Encoding:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
11
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
- User-Agent:
15
- - Ruby
16
- response:
17
- status:
14
+ Accept:
15
+ - '*/*'
16
+ response:
17
+ status:
18
18
  code: 200
19
19
  message: OK
20
- headers:
21
- Server:
22
- - nginx/0.7.65
23
- Date:
24
- - Mon, 02 Jul 2012 14:43:05 GMT
25
- Content-Type:
20
+ headers:
21
+ Server:
22
+ - nginx/1.4.2
23
+ Date:
24
+ - Fri, 17 Jan 2014 01:49:16 GMT
25
+ Content-Type:
26
26
  - text/html
27
- Transfer-Encoding:
27
+ Transfer-Encoding:
28
28
  - chunked
29
- Connection:
29
+ Connection:
30
30
  - keep-alive
31
- Content-Encoding:
32
- - gzip
33
- body:
34
- encoding: ASCII-8BIT
35
- string: !binary |
36
- H4sIAAAAAAAAA4uuVkrNTczMUbJSUCpJLS5xSK1IzC3ISdVLzs9Vqo0FAJGt
37
- ANIfAAAA
38
-
31
+ body:
32
+ encoding: UTF-8
33
+ string: '[{"email": "test@example.com"}]'
39
34
  http_version:
40
- recorded_at: Mon, 02 Jul 2012 14:43:05 GMT
41
- recorded_with: VCR 2.1.1
35
+ recorded_at: Fri, 17 Jan 2014 01:49:16 GMT
36
+ recorded_with: VCR 2.8.0
@@ -1,41 +1,36 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
- uri: https://sendgrid.com/api/unsubscribes.delete.json?api_key=pass&api_user=user&email=test@example.com
6
- body:
5
+ uri: https://api.sendgrid.com/api/unsubscribes.delete.json?email=test@example.com
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- Accept-Encoding:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ Accept-Encoding:
11
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
- User-Agent:
15
- - Ruby
16
- response:
17
- status:
14
+ Accept:
15
+ - '*/*'
16
+ response:
17
+ status:
18
18
  code: 200
19
19
  message: OK
20
- headers:
21
- Server:
22
- - nginx/0.7.65
23
- Date:
24
- - Mon, 02 Jul 2012 14:43:07 GMT
25
- Content-Type:
20
+ headers:
21
+ Server:
22
+ - nginx/1.4.2
23
+ Date:
24
+ - Fri, 17 Jan 2014 01:49:19 GMT
25
+ Content-Type:
26
26
  - text/html
27
- Transfer-Encoding:
27
+ Transfer-Encoding:
28
28
  - chunked
29
- Connection:
29
+ Connection:
30
30
  - keep-alive
31
- Content-Encoding:
32
- - gzip
33
- body:
34
- encoding: ASCII-8BIT
35
- string: !binary |
36
- H4sIAAAAAAAAA6tWyk0tLk5MT1WyUlByzU3MzFFIyU8tVsjLL1FIrcgsLlGq
37
- BQBKtWgQIwAAAA==
38
-
31
+ body:
32
+ encoding: UTF-8
33
+ string: '{"message": "Email does not exist"}'
39
34
  http_version:
40
- recorded_at: Mon, 02 Jul 2012 14:43:08 GMT
41
- recorded_with: VCR 2.1.1
35
+ recorded_at: Fri, 17 Jan 2014 01:49:19 GMT
36
+ recorded_with: VCR 2.8.0