qualtrics 0.5.1

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 (72) hide show
  1. checksums.yaml +7 -0
  2. data/.env.example +3 -0
  3. data/.gitignore +23 -0
  4. data/.rspec +1 -0
  5. data/Gemfile +7 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +29 -0
  8. data/Rakefile +7 -0
  9. data/lib/qualtrics.rb +52 -0
  10. data/lib/qualtrics/configuration.rb +17 -0
  11. data/lib/qualtrics/distribution.rb +90 -0
  12. data/lib/qualtrics/entity.rb +55 -0
  13. data/lib/qualtrics/mailer.rb +111 -0
  14. data/lib/qualtrics/message.rb +75 -0
  15. data/lib/qualtrics/operation.rb +77 -0
  16. data/lib/qualtrics/panel.rb +69 -0
  17. data/lib/qualtrics/panel_import.rb +41 -0
  18. data/lib/qualtrics/panel_import_file.rb +28 -0
  19. data/lib/qualtrics/recipient.rb +109 -0
  20. data/lib/qualtrics/recipient_import_row.rb +40 -0
  21. data/lib/qualtrics/response.rb +35 -0
  22. data/lib/qualtrics/survey.rb +80 -0
  23. data/lib/qualtrics/survey_import.rb +26 -0
  24. data/lib/qualtrics/transaction.rb +70 -0
  25. data/lib/qualtrics/version.rb +3 -0
  26. data/qualtrics.gemspec +34 -0
  27. data/spec/fixtures/sample_survey.xml +2 -0
  28. data/spec/fixtures/vcr_cassettes/Qualtrics_Distribution/creating_to_qualtrics/can_retrieve_a_panel_of_distributions_in_qualtrics.yml +655 -0
  29. data/spec/fixtures/vcr_cassettes/Qualtrics_Distribution/creating_to_qualtrics/can_update_itself.yml +599 -0
  30. data/spec/fixtures/vcr_cassettes/Qualtrics_Mailer/creating_to_qualtrics/sends_a_reminder_to_a_distribution.yml +493 -0
  31. data/spec/fixtures/vcr_cassettes/Qualtrics_Mailer/creating_to_qualtrics/sends_a_survey_to_a_panel_and_creates_a_distribution.yml +441 -0
  32. data/spec/fixtures/vcr_cassettes/Qualtrics_Mailer/creating_to_qualtrics/sends_a_survey_to_an_individual_and_creates_a_distribution.yml +441 -0
  33. data/spec/fixtures/vcr_cassettes/Qualtrics_Message/creating_to_qualtrics/persists_to_qualtrics.yml +56 -0
  34. data/spec/fixtures/vcr_cassettes/Qualtrics_Message/creating_to_qualtrics/populates_the_message_id_when_successful.yml +56 -0
  35. data/spec/fixtures/vcr_cassettes/Qualtrics_Message/creating_to_qualtrics/populates_the_success_attribute.yml +56 -0
  36. data/spec/fixtures/vcr_cassettes/Qualtrics_Message/retrieves_an_array_of_all_panels_in_a_library.yml +115 -0
  37. data/spec/fixtures/vcr_cassettes/Qualtrics_Panel/creating_to_qualtrics/persists_to_qualtrics.yml +107 -0
  38. data/spec/fixtures/vcr_cassettes/Qualtrics_Panel/creating_to_qualtrics/populates_the_panel_id_when_successful.yml +107 -0
  39. data/spec/fixtures/vcr_cassettes/Qualtrics_Panel/creating_to_qualtrics/populates_the_success_attribute.yml +107 -0
  40. data/spec/fixtures/vcr_cassettes/Qualtrics_Panel/destroys_a_panel_that_returns_true_when_successful.yml +107 -0
  41. data/spec/fixtures/vcr_cassettes/Qualtrics_Panel/raises_an_error_when_you_attempt_to_save_an_already_presisted_panel.yml +55 -0
  42. data/spec/fixtures/vcr_cassettes/Qualtrics_Panel/retrieves_an_array_of_all_panels_in_a_library.yml +704 -0
  43. data/spec/fixtures/vcr_cassettes/Qualtrics_PanelImport/transmits_to_qualtrics.yml +72 -0
  44. data/spec/fixtures/vcr_cassettes/Qualtrics_Recipient/creating_to_qualtrics/persists_to_qualtrics.yml +159 -0
  45. data/spec/fixtures/vcr_cassettes/Qualtrics_Recipient/creating_to_qualtrics/populates_the_recipient_id_when_successful.yml +159 -0
  46. data/spec/fixtures/vcr_cassettes/Qualtrics_Recipient/creating_to_qualtrics/populates_the_success_attribute.yml +159 -0
  47. data/spec/fixtures/vcr_cassettes/Qualtrics_Recipient/creating_to_qualtrics/raises_an_error_when_a_recipient_is_created_without_specifying_a_panel_id.yml +107 -0
  48. data/spec/fixtures/vcr_cassettes/Qualtrics_Recipient/recipient_made_in_qualtrics/can_delete_itself_in_qualtrics.yml +311 -0
  49. data/spec/fixtures/vcr_cassettes/Qualtrics_Recipient/recipient_made_in_qualtrics/can_update_itself_in_qualtrics.yml +313 -0
  50. data/spec/fixtures/vcr_cassettes/Qualtrics_Recipient/recipient_made_in_qualtrics/gets_its_information_in_qualtrics.yml +209 -0
  51. data/spec/fixtures/vcr_cassettes/Qualtrics_Survey/creating_to_qualtrics/can_be_activated_or_deactivated.yml +232 -0
  52. data/spec/fixtures/vcr_cassettes/Qualtrics_Survey/creating_to_qualtrics/destroys_a_survey_that_returns_true_when_successful.yml +128 -0
  53. data/spec/fixtures/vcr_cassettes/Qualtrics_Survey/creating_to_qualtrics/populates_the_survey_id_when_successful.yml +128 -0
  54. data/spec/fixtures/vcr_cassettes/Qualtrics_Survey/creating_to_qualtrics/retrieves_an_array_of_all_surveys.yml +203 -0
  55. data/spec/fixtures/vcr_cassettes/Qualtrics_SurveyImport/transmits_to_qualtrics.yml +128 -0
  56. data/spec/qualtrics/configuration_spec.rb +53 -0
  57. data/spec/qualtrics/distribution_spec.rb +144 -0
  58. data/spec/qualtrics/mailer_spec.rb +127 -0
  59. data/spec/qualtrics/message_spec.rb +105 -0
  60. data/spec/qualtrics/panel_import_file_spec.rb +26 -0
  61. data/spec/qualtrics/panel_import_spec.rb +43 -0
  62. data/spec/qualtrics/panel_spec.rb +80 -0
  63. data/spec/qualtrics/recipient_import_row_spec.rb +62 -0
  64. data/spec/qualtrics/recipient_spec.rb +185 -0
  65. data/spec/qualtrics/response_spec.rb +41 -0
  66. data/spec/qualtrics/survey_import_spec.rb +44 -0
  67. data/spec/qualtrics/survey_spec.rb +125 -0
  68. data/spec/spec_helper.rb +11 -0
  69. data/spec/support/_dotenv.rb +2 -0
  70. data/spec/support/qualtrics.rb +5 -0
  71. data/spec/support/vcr.rb +11 -0
  72. metadata +330 -0
@@ -0,0 +1,441 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
6
+ body:
7
+ encoding: UTF-8
8
+ string: Category=Great+Category&Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&Name=Newest+Panel&Request=createPanel&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.1
12
+ Content-Type:
13
+ - application/x-www-form-urlencoded
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Server:
24
+ - Apache
25
+ Cache-Control:
26
+ - max-age=315360000
27
+ Expires:
28
+ - Sat, 08 Feb 2025 19:15:30 GMT
29
+ P3p:
30
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
31
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
32
+ Servershortname:
33
+ - w163
34
+ X-Cnection:
35
+ - close
36
+ X-Edgeconnect-Midmile-Rtt:
37
+ - '14'
38
+ - '17'
39
+ X-Edgeconnect-Origin-Mex-Latency:
40
+ - '262'
41
+ - '799'
42
+ Content-Length:
43
+ - '82'
44
+ Content-Type:
45
+ - application/json
46
+ Date:
47
+ - Wed, 11 Feb 2015 19:15:30 GMT
48
+ Connection:
49
+ - keep-alive
50
+ body:
51
+ encoding: UTF-8
52
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"PanelID\":\"ML_aVjDtMT8Ad4RKaF\"}}"
53
+ http_version:
54
+ recorded_at: Wed, 11 Feb 2015 19:15:33 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
58
+ body:
59
+ encoding: UTF-8
60
+ string: Email=working%40hard.com&Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_aVjDtMT8Ad4RKaF&Request=addRecipient&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
61
+ headers:
62
+ User-Agent:
63
+ - Faraday v0.9.1
64
+ Content-Type:
65
+ - application/x-www-form-urlencoded
66
+ Accept-Encoding:
67
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
68
+ Accept:
69
+ - "*/*"
70
+ response:
71
+ status:
72
+ code: 200
73
+ message: OK
74
+ headers:
75
+ Server:
76
+ - Apache
77
+ Cache-Control:
78
+ - max-age=315360000
79
+ Expires:
80
+ - Sat, 08 Feb 2025 19:15:31 GMT
81
+ P3p:
82
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
83
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
84
+ Servershortname:
85
+ - w7
86
+ X-Cnection:
87
+ - close
88
+ X-Edgeconnect-Midmile-Rtt:
89
+ - '10'
90
+ - '16'
91
+ X-Edgeconnect-Origin-Mex-Latency:
92
+ - '180'
93
+ - '655'
94
+ Content-Length:
95
+ - '88'
96
+ Content-Type:
97
+ - application/json
98
+ Date:
99
+ - Wed, 11 Feb 2015 19:15:31 GMT
100
+ Connection:
101
+ - keep-alive
102
+ body:
103
+ encoding: UTF-8
104
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"RecipientID\":\"MLRP_bJwJ5kPeFx2cUqV\"}}"
105
+ http_version:
106
+ recorded_at: Wed, 11 Feb 2015 19:15:34 GMT
107
+ - request:
108
+ method: post
109
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
110
+ body:
111
+ encoding: UTF-8
112
+ string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"Name\"\r\n\r\nComplex
113
+ survey\r\n-------------RubyMultipartPost\r\nContent-Disposition: form-data;
114
+ name=\"Data\"; filename=\"sample_survey.xml\"\r\nContent-Length: 1296\r\nContent-Type:
115
+ text/xml\r\nContent-Transfer-Encoding: binary\r\n\r\n<?xml version=\"1.0\"
116
+ encoding=\"UTF-8\"?>\n<SurveyDefinition><SurveyName>Sample survey</SurveyName><OwnerID><QUALTRICS_LIBRARY_ID></OwnerID><isActive>0</isActive><CreationDate>2015-02-05
117
+ 13:57:01</CreationDate><LastModifiedDate>2015-02-05 13:57:41</LastModifiedDate><StartDate>0000-00-00
118
+ 00:00:00</StartDate><ExpirationDate>0000-00-00 00:00:00</ExpirationDate><Languages><Language
119
+ Default=\"1\">EN</Language></Languages><Questions><Question QuestionID=\"QID1\"><Type>MC</Type><Selector>SAVR</Selector><SubSelector>TX</SubSelector><QuestionText><![CDATA[Only
120
+ one questions]]></QuestionText><QuestionDescription><![CDATA[Only one questions]]></QuestionDescription><ExportTag><![CDATA[Q1]]></ExportTag><Validation><ForceResponse>0</ForceResponse></Validation><Choices><Choice
121
+ ID=\"1\" Recode=\"1\"><Description><![CDATA[Not this]]></Description></Choice><Choice
122
+ ID=\"2\" Recode=\"2\"><Description><![CDATA[This is it]]></Description></Choice><Choice
123
+ ID=\"3\" Recode=\"3\"><Description><![CDATA[Cool answer]]></Description></Choice></Choices></Question></Questions><Blocks><Block
124
+ Description=\"Default Question Block\" ID=\"BL_bef14vSx8WZHkdn\"><BlockElements><Question
125
+ QuestionID=\"QID1\"/></BlockElements></Block></Blocks><SurveyFlow><Block FlowID=\"FL_2\"
126
+ ID=\"BL_bef14vSx8WZHkdn\"/></SurveyFlow><EmbeddedData/></SurveyDefinition>\n\r\n-------------RubyMultipartPost\r\nContent-Disposition:
127
+ form-data; name=\"User\"\r\n\r\n<QUALTRICS_USER>\r\n-------------RubyMultipartPost\r\nContent-Disposition:
128
+ form-data; name=\"Token\"\r\n\r\n<QUALTRICS_TOKEN>\r\n-------------RubyMultipartPost\r\nContent-Disposition:
129
+ form-data; name=\"Version\"\r\n\r\n2.3\r\n-------------RubyMultipartPost\r\nContent-Disposition:
130
+ form-data; name=\"Format\"\r\n\r\nJSON\r\n-------------RubyMultipartPost\r\nContent-Disposition:
131
+ form-data; name=\"Request\"\r\n\r\nimportSurvey\r\n-------------RubyMultipartPost--\r\n\r\n"
132
+ headers:
133
+ User-Agent:
134
+ - Faraday v0.9.1
135
+ Content-Type:
136
+ - multipart/form-data; boundary=-----------RubyMultipartPost
137
+ Content-Length:
138
+ - '2120'
139
+ Accept-Encoding:
140
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
141
+ Accept:
142
+ - "*/*"
143
+ response:
144
+ status:
145
+ code: 200
146
+ message: OK
147
+ headers:
148
+ Server:
149
+ - Apache
150
+ Cache-Control:
151
+ - max-age=315360000
152
+ Expires:
153
+ - Sat, 08 Feb 2025 19:15:32 GMT
154
+ P3p:
155
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
156
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
157
+ Servershortname:
158
+ - w631
159
+ X-Cnection:
160
+ - close
161
+ X-Edgeconnect-Midmile-Rtt:
162
+ - '12'
163
+ - '13'
164
+ X-Edgeconnect-Origin-Mex-Latency:
165
+ - '1149'
166
+ - '638'
167
+ Content-Length:
168
+ - '83'
169
+ Content-Type:
170
+ - application/json
171
+ Date:
172
+ - Wed, 11 Feb 2015 19:15:32 GMT
173
+ Connection:
174
+ - keep-alive
175
+ body:
176
+ encoding: UTF-8
177
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"SurveyID\":\"SV_009bM3OFyAbeG3z\"}}"
178
+ http_version:
179
+ recorded_at: Wed, 11 Feb 2015 19:15:35 GMT
180
+ - request:
181
+ method: post
182
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
183
+ body:
184
+ encoding: UTF-8
185
+ string: Category=InviteEmails&Format=JSON&Language=EN&LibraryID=<QUALTRICS_LIBRARY_ID>&Message=Welcome&Name=Newest+Message&Request=createLibraryMessage&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
186
+ headers:
187
+ User-Agent:
188
+ - Faraday v0.9.1
189
+ Content-Type:
190
+ - application/x-www-form-urlencoded
191
+ Accept-Encoding:
192
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
193
+ Accept:
194
+ - "*/*"
195
+ response:
196
+ status:
197
+ code: 200
198
+ message: OK
199
+ headers:
200
+ Server:
201
+ - Apache
202
+ Cache-Control:
203
+ - max-age=315360000
204
+ Expires:
205
+ - Sat, 08 Feb 2025 19:15:33 GMT
206
+ P3p:
207
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
208
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
209
+ Servershortname:
210
+ - w202
211
+ X-Cnection:
212
+ - close
213
+ X-Edgeconnect-Midmile-Rtt:
214
+ - '15'
215
+ - '18'
216
+ X-Edgeconnect-Origin-Mex-Latency:
217
+ - '290'
218
+ - '748'
219
+ Content-Length:
220
+ - '174'
221
+ Content-Type:
222
+ - application/json
223
+ Date:
224
+ - Wed, 11 Feb 2015 19:15:33 GMT
225
+ Connection:
226
+ - keep-alive
227
+ body:
228
+ encoding: UTF-8
229
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"LibraryID\":\"<QUALTRICS_LIBRARY_ID>\",\"MessageID\":\"MS_brUqqOjvpnGPUep\",\"Description\":\"Newest
230
+ Message\",\"Category\":\"InviteEmails\"}}"
231
+ http_version:
232
+ recorded_at: Wed, 11 Feb 2015 19:15:36 GMT
233
+ - request:
234
+ method: post
235
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
236
+ body:
237
+ encoding: UTF-8
238
+ string: Format=JSON&FromEmail=example%40example.com&FromName=yes_qualtrics&MessageID=MS_brUqqOjvpnGPUep&MessageLibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_aVjDtMT8Ad4RKaF&PanelLibraryID=<QUALTRICS_LIBRARY_ID>&Request=sendSurveyToPanel&SendDate=2015-02-11+12%3A15%3A36&SentFromAddress=noreply%40qemailserver.com&Subject=game+convention&SurveyID=SV_009bM3OFyAbeG3z&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
239
+ headers:
240
+ User-Agent:
241
+ - Faraday v0.9.1
242
+ Content-Type:
243
+ - application/x-www-form-urlencoded
244
+ Accept-Encoding:
245
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
246
+ Accept:
247
+ - "*/*"
248
+ response:
249
+ status:
250
+ code: 200
251
+ message: OK
252
+ headers:
253
+ Server:
254
+ - Apache
255
+ Cache-Control:
256
+ - max-age=315360000
257
+ Expires:
258
+ - Sat, 08 Feb 2025 19:15:34 GMT
259
+ P3p:
260
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
261
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
262
+ Servershortname:
263
+ - w17
264
+ X-Cnection:
265
+ - close
266
+ X-Edgeconnect-Midmile-Rtt:
267
+ - '13'
268
+ - '19'
269
+ X-Edgeconnect-Origin-Mex-Latency:
270
+ - '1043'
271
+ - '623'
272
+ Content-Length:
273
+ - '154'
274
+ Content-Type:
275
+ - application/json
276
+ Date:
277
+ - Wed, 11 Feb 2015 19:15:34 GMT
278
+ Connection:
279
+ - keep-alive
280
+ body:
281
+ encoding: UTF-8
282
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"Success\":true,\"EmailDistributionID\":\"EMD_0wRHqnUoEAZh65L\",\"DistributionQueueID\":\"EMD_0wRHqnUoEAZh65L\"}}"
283
+ http_version:
284
+ recorded_at: Wed, 11 Feb 2015 19:15:37 GMT
285
+ - request:
286
+ method: post
287
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
288
+ body:
289
+ encoding: UTF-8
290
+ string: Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_aVjDtMT8Ad4RKaF&RecipientID=MLRP_bJwJ5kPeFx2cUqV&Request=removeRecipient&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
291
+ headers:
292
+ User-Agent:
293
+ - Faraday v0.9.1
294
+ Content-Type:
295
+ - application/x-www-form-urlencoded
296
+ Accept-Encoding:
297
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
298
+ Accept:
299
+ - "*/*"
300
+ response:
301
+ status:
302
+ code: 200
303
+ message: OK
304
+ headers:
305
+ Server:
306
+ - Apache
307
+ Cache-Control:
308
+ - max-age=315360000
309
+ Expires:
310
+ - Sat, 08 Feb 2025 19:15:35 GMT
311
+ P3p:
312
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
313
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
314
+ Servershortname:
315
+ - w163
316
+ X-Cnection:
317
+ - close
318
+ X-Edgeconnect-Midmile-Rtt:
319
+ - '12'
320
+ - '16'
321
+ X-Edgeconnect-Origin-Mex-Latency:
322
+ - '220'
323
+ - '638'
324
+ Content-Length:
325
+ - '63'
326
+ Content-Type:
327
+ - application/json
328
+ Date:
329
+ - Wed, 11 Feb 2015 19:15:35 GMT
330
+ Connection:
331
+ - keep-alive
332
+ body:
333
+ encoding: UTF-8
334
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"Success\":1}}"
335
+ http_version:
336
+ recorded_at: Wed, 11 Feb 2015 19:15:38 GMT
337
+ - request:
338
+ method: post
339
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
340
+ body:
341
+ encoding: UTF-8
342
+ string: Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_aVjDtMT8Ad4RKaF&Request=deletePanel&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
343
+ headers:
344
+ User-Agent:
345
+ - Faraday v0.9.1
346
+ Content-Type:
347
+ - application/x-www-form-urlencoded
348
+ Accept-Encoding:
349
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
350
+ Accept:
351
+ - "*/*"
352
+ response:
353
+ status:
354
+ code: 200
355
+ message: OK
356
+ headers:
357
+ Server:
358
+ - Apache
359
+ Cache-Control:
360
+ - max-age=315360000
361
+ Expires:
362
+ - Sat, 08 Feb 2025 19:15:36 GMT
363
+ P3p:
364
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
365
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
366
+ Servershortname:
367
+ - w8
368
+ X-Cnection:
369
+ - close
370
+ X-Edgeconnect-Midmile-Rtt:
371
+ - '12'
372
+ - '18'
373
+ X-Edgeconnect-Origin-Mex-Latency:
374
+ - '257'
375
+ - '695'
376
+ Content-Length:
377
+ - '66'
378
+ Content-Type:
379
+ - application/json
380
+ Date:
381
+ - Wed, 11 Feb 2015 19:15:36 GMT
382
+ Connection:
383
+ - keep-alive
384
+ body:
385
+ encoding: UTF-8
386
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"Success\":true}}"
387
+ http_version:
388
+ recorded_at: Wed, 11 Feb 2015 19:15:39 GMT
389
+ - request:
390
+ method: post
391
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
392
+ body:
393
+ encoding: UTF-8
394
+ string: Format=JSON&Request=deleteSurvey&SurveyID=SV_009bM3OFyAbeG3z&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
395
+ headers:
396
+ User-Agent:
397
+ - Faraday v0.9.1
398
+ Content-Type:
399
+ - application/x-www-form-urlencoded
400
+ Accept-Encoding:
401
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
402
+ Accept:
403
+ - "*/*"
404
+ response:
405
+ status:
406
+ code: 200
407
+ message: OK
408
+ headers:
409
+ Server:
410
+ - Apache
411
+ Cache-Control:
412
+ - max-age=315360000
413
+ Expires:
414
+ - Sat, 08 Feb 2025 19:15:36 GMT
415
+ P3p:
416
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
417
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
418
+ Servershortname:
419
+ - w634
420
+ X-Cnection:
421
+ - close
422
+ X-Edgeconnect-Midmile-Rtt:
423
+ - '12'
424
+ - '12'
425
+ X-Edgeconnect-Origin-Mex-Latency:
426
+ - '483'
427
+ - '957'
428
+ Content-Length:
429
+ - '54'
430
+ Content-Type:
431
+ - application/json
432
+ Date:
433
+ - Wed, 11 Feb 2015 19:15:37 GMT
434
+ Connection:
435
+ - keep-alive
436
+ body:
437
+ encoding: UTF-8
438
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":null}"
439
+ http_version:
440
+ recorded_at: Wed, 11 Feb 2015 19:15:40 GMT
441
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,441 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
6
+ body:
7
+ encoding: UTF-8
8
+ string: Category=Great+Category&Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&Name=Newest+Panel&Request=createPanel&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.1
12
+ Content-Type:
13
+ - application/x-www-form-urlencoded
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Server:
24
+ - Apache
25
+ Cache-Control:
26
+ - max-age=315360000
27
+ Expires:
28
+ - Sat, 08 Feb 2025 19:15:15 GMT
29
+ P3p:
30
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
31
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
32
+ Servershortname:
33
+ - w541
34
+ X-Cnection:
35
+ - close
36
+ X-Edgeconnect-Midmile-Rtt:
37
+ - '16'
38
+ - '9'
39
+ X-Edgeconnect-Origin-Mex-Latency:
40
+ - '276'
41
+ - '705'
42
+ Content-Length:
43
+ - '82'
44
+ Content-Type:
45
+ - application/json
46
+ Date:
47
+ - Wed, 11 Feb 2015 19:15:15 GMT
48
+ Connection:
49
+ - keep-alive
50
+ body:
51
+ encoding: UTF-8
52
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"PanelID\":\"ML_6hshq8P9FR0BJn7\"}}"
53
+ http_version:
54
+ recorded_at: Wed, 11 Feb 2015 19:15:18 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
58
+ body:
59
+ encoding: UTF-8
60
+ string: Email=working%40hard.com&Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_6hshq8P9FR0BJn7&Request=addRecipient&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
61
+ headers:
62
+ User-Agent:
63
+ - Faraday v0.9.1
64
+ Content-Type:
65
+ - application/x-www-form-urlencoded
66
+ Accept-Encoding:
67
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
68
+ Accept:
69
+ - "*/*"
70
+ response:
71
+ status:
72
+ code: 200
73
+ message: OK
74
+ headers:
75
+ Server:
76
+ - Apache
77
+ Cache-Control:
78
+ - max-age=315360000
79
+ Expires:
80
+ - Sat, 08 Feb 2025 19:15:15 GMT
81
+ P3p:
82
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
83
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
84
+ Servershortname:
85
+ - w295
86
+ X-Cnection:
87
+ - close
88
+ X-Edgeconnect-Midmile-Rtt:
89
+ - '13'
90
+ - '9'
91
+ X-Edgeconnect-Origin-Mex-Latency:
92
+ - '320'
93
+ - '704'
94
+ Content-Length:
95
+ - '88'
96
+ Content-Type:
97
+ - application/json
98
+ Date:
99
+ - Wed, 11 Feb 2015 19:15:16 GMT
100
+ Connection:
101
+ - keep-alive
102
+ body:
103
+ encoding: UTF-8
104
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"RecipientID\":\"MLRP_d0Z4W6GiigAonJ3\"}}"
105
+ http_version:
106
+ recorded_at: Wed, 11 Feb 2015 19:15:19 GMT
107
+ - request:
108
+ method: post
109
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
110
+ body:
111
+ encoding: UTF-8
112
+ string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"Name\"\r\n\r\nComplex
113
+ survey\r\n-------------RubyMultipartPost\r\nContent-Disposition: form-data;
114
+ name=\"Data\"; filename=\"sample_survey.xml\"\r\nContent-Length: 1296\r\nContent-Type:
115
+ text/xml\r\nContent-Transfer-Encoding: binary\r\n\r\n<?xml version=\"1.0\"
116
+ encoding=\"UTF-8\"?>\n<SurveyDefinition><SurveyName>Sample survey</SurveyName><OwnerID><QUALTRICS_LIBRARY_ID></OwnerID><isActive>0</isActive><CreationDate>2015-02-05
117
+ 13:57:01</CreationDate><LastModifiedDate>2015-02-05 13:57:41</LastModifiedDate><StartDate>0000-00-00
118
+ 00:00:00</StartDate><ExpirationDate>0000-00-00 00:00:00</ExpirationDate><Languages><Language
119
+ Default=\"1\">EN</Language></Languages><Questions><Question QuestionID=\"QID1\"><Type>MC</Type><Selector>SAVR</Selector><SubSelector>TX</SubSelector><QuestionText><![CDATA[Only
120
+ one questions]]></QuestionText><QuestionDescription><![CDATA[Only one questions]]></QuestionDescription><ExportTag><![CDATA[Q1]]></ExportTag><Validation><ForceResponse>0</ForceResponse></Validation><Choices><Choice
121
+ ID=\"1\" Recode=\"1\"><Description><![CDATA[Not this]]></Description></Choice><Choice
122
+ ID=\"2\" Recode=\"2\"><Description><![CDATA[This is it]]></Description></Choice><Choice
123
+ ID=\"3\" Recode=\"3\"><Description><![CDATA[Cool answer]]></Description></Choice></Choices></Question></Questions><Blocks><Block
124
+ Description=\"Default Question Block\" ID=\"BL_bef14vSx8WZHkdn\"><BlockElements><Question
125
+ QuestionID=\"QID1\"/></BlockElements></Block></Blocks><SurveyFlow><Block FlowID=\"FL_2\"
126
+ ID=\"BL_bef14vSx8WZHkdn\"/></SurveyFlow><EmbeddedData/></SurveyDefinition>\n\r\n-------------RubyMultipartPost\r\nContent-Disposition:
127
+ form-data; name=\"User\"\r\n\r\n<QUALTRICS_USER>\r\n-------------RubyMultipartPost\r\nContent-Disposition:
128
+ form-data; name=\"Token\"\r\n\r\n<QUALTRICS_TOKEN>\r\n-------------RubyMultipartPost\r\nContent-Disposition:
129
+ form-data; name=\"Version\"\r\n\r\n2.3\r\n-------------RubyMultipartPost\r\nContent-Disposition:
130
+ form-data; name=\"Format\"\r\n\r\nJSON\r\n-------------RubyMultipartPost\r\nContent-Disposition:
131
+ form-data; name=\"Request\"\r\n\r\nimportSurvey\r\n-------------RubyMultipartPost--\r\n\r\n"
132
+ headers:
133
+ User-Agent:
134
+ - Faraday v0.9.1
135
+ Content-Type:
136
+ - multipart/form-data; boundary=-----------RubyMultipartPost
137
+ Content-Length:
138
+ - '2120'
139
+ Accept-Encoding:
140
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
141
+ Accept:
142
+ - "*/*"
143
+ response:
144
+ status:
145
+ code: 200
146
+ message: OK
147
+ headers:
148
+ Server:
149
+ - Apache
150
+ Cache-Control:
151
+ - max-age=315360000
152
+ Expires:
153
+ - Sat, 08 Feb 2025 19:15:16 GMT
154
+ P3p:
155
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
156
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
157
+ Servershortname:
158
+ - w423
159
+ X-Cnection:
160
+ - close
161
+ X-Edgeconnect-Midmile-Rtt:
162
+ - '10'
163
+ - '14'
164
+ X-Edgeconnect-Origin-Mex-Latency:
165
+ - '543'
166
+ - '985'
167
+ Content-Length:
168
+ - '83'
169
+ Content-Type:
170
+ - application/json
171
+ Date:
172
+ - Wed, 11 Feb 2015 19:15:17 GMT
173
+ Connection:
174
+ - keep-alive
175
+ body:
176
+ encoding: UTF-8
177
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"SurveyID\":\"SV_6rlsvOLzHEnr1CR\"}}"
178
+ http_version:
179
+ recorded_at: Wed, 11 Feb 2015 19:15:20 GMT
180
+ - request:
181
+ method: post
182
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
183
+ body:
184
+ encoding: UTF-8
185
+ string: Category=InviteEmails&Format=JSON&Language=EN&LibraryID=<QUALTRICS_LIBRARY_ID>&Message=Welcome&Name=Newest+Message&Request=createLibraryMessage&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
186
+ headers:
187
+ User-Agent:
188
+ - Faraday v0.9.1
189
+ Content-Type:
190
+ - application/x-www-form-urlencoded
191
+ Accept-Encoding:
192
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
193
+ Accept:
194
+ - "*/*"
195
+ response:
196
+ status:
197
+ code: 200
198
+ message: OK
199
+ headers:
200
+ Server:
201
+ - Apache
202
+ Cache-Control:
203
+ - max-age=315360000
204
+ Expires:
205
+ - Sat, 08 Feb 2025 19:15:17 GMT
206
+ P3p:
207
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
208
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
209
+ Servershortname:
210
+ - w631
211
+ X-Cnection:
212
+ - close
213
+ X-Edgeconnect-Midmile-Rtt:
214
+ - '10'
215
+ - '12'
216
+ X-Edgeconnect-Origin-Mex-Latency:
217
+ - '211'
218
+ - '585'
219
+ Content-Length:
220
+ - '174'
221
+ Content-Type:
222
+ - application/json
223
+ Date:
224
+ - Wed, 11 Feb 2015 19:15:17 GMT
225
+ Connection:
226
+ - keep-alive
227
+ body:
228
+ encoding: UTF-8
229
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"LibraryID\":\"<QUALTRICS_LIBRARY_ID>\",\"MessageID\":\"MS_4Sktf6RBi4TJtGt\",\"Description\":\"Newest
230
+ Message\",\"Category\":\"InviteEmails\"}}"
231
+ http_version:
232
+ recorded_at: Wed, 11 Feb 2015 19:15:20 GMT
233
+ - request:
234
+ method: post
235
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
236
+ body:
237
+ encoding: UTF-8
238
+ string: Format=JSON&FromEmail=example%40example.com&FromName=yes_qualtrics&MessageID=MS_4Sktf6RBi4TJtGt&MessageLibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_6hshq8P9FR0BJn7&PanelLibraryID=<QUALTRICS_LIBRARY_ID>&RecipientID=MLRP_d0Z4W6GiigAonJ3&Request=sendSurveyToIndividual&SendDate=2015-02-11+12%3A15%3A20&SentFromAddress=noreply%40qemailserver.com&Subject=game+convention&SurveyID=SV_6rlsvOLzHEnr1CR&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
239
+ headers:
240
+ User-Agent:
241
+ - Faraday v0.9.1
242
+ Content-Type:
243
+ - application/x-www-form-urlencoded
244
+ Accept-Encoding:
245
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
246
+ Accept:
247
+ - "*/*"
248
+ response:
249
+ status:
250
+ code: 200
251
+ message: OK
252
+ headers:
253
+ Server:
254
+ - Apache
255
+ Cache-Control:
256
+ - max-age=315360000
257
+ Expires:
258
+ - Sat, 08 Feb 2025 19:15:18 GMT
259
+ P3p:
260
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
261
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
262
+ Servershortname:
263
+ - w631
264
+ X-Cnection:
265
+ - close
266
+ X-Edgeconnect-Midmile-Rtt:
267
+ - '12'
268
+ - '9'
269
+ X-Edgeconnect-Origin-Mex-Latency:
270
+ - '1073'
271
+ - '702'
272
+ Content-Length:
273
+ - '154'
274
+ Content-Type:
275
+ - application/json
276
+ Date:
277
+ - Wed, 11 Feb 2015 19:15:19 GMT
278
+ Connection:
279
+ - keep-alive
280
+ body:
281
+ encoding: UTF-8
282
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"Success\":true,\"EmailDistributionID\":\"EMD_eQjEi3uvaOhVfkF\",\"DistributionQueueID\":\"EMD_eQjEi3uvaOhVfkF\"}}"
283
+ http_version:
284
+ recorded_at: Wed, 11 Feb 2015 19:15:22 GMT
285
+ - request:
286
+ method: post
287
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
288
+ body:
289
+ encoding: UTF-8
290
+ string: Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_6hshq8P9FR0BJn7&RecipientID=MLRP_d0Z4W6GiigAonJ3&Request=removeRecipient&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
291
+ headers:
292
+ User-Agent:
293
+ - Faraday v0.9.1
294
+ Content-Type:
295
+ - application/x-www-form-urlencoded
296
+ Accept-Encoding:
297
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
298
+ Accept:
299
+ - "*/*"
300
+ response:
301
+ status:
302
+ code: 200
303
+ message: OK
304
+ headers:
305
+ Server:
306
+ - Apache
307
+ Cache-Control:
308
+ - max-age=315360000
309
+ Expires:
310
+ - Sat, 08 Feb 2025 19:15:19 GMT
311
+ P3p:
312
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
313
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
314
+ Servershortname:
315
+ - w423
316
+ X-Cnection:
317
+ - close
318
+ X-Edgeconnect-Midmile-Rtt:
319
+ - '16'
320
+ - '9'
321
+ X-Edgeconnect-Origin-Mex-Latency:
322
+ - '259'
323
+ - '695'
324
+ Content-Length:
325
+ - '63'
326
+ Content-Type:
327
+ - application/json
328
+ Date:
329
+ - Wed, 11 Feb 2015 19:15:19 GMT
330
+ Connection:
331
+ - keep-alive
332
+ body:
333
+ encoding: UTF-8
334
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"Success\":1}}"
335
+ http_version:
336
+ recorded_at: Wed, 11 Feb 2015 19:15:22 GMT
337
+ - request:
338
+ method: post
339
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
340
+ body:
341
+ encoding: UTF-8
342
+ string: Format=JSON&LibraryID=<QUALTRICS_LIBRARY_ID>&PanelID=ML_6hshq8P9FR0BJn7&Request=deletePanel&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
343
+ headers:
344
+ User-Agent:
345
+ - Faraday v0.9.1
346
+ Content-Type:
347
+ - application/x-www-form-urlencoded
348
+ Accept-Encoding:
349
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
350
+ Accept:
351
+ - "*/*"
352
+ response:
353
+ status:
354
+ code: 200
355
+ message: OK
356
+ headers:
357
+ Server:
358
+ - Apache
359
+ Cache-Control:
360
+ - max-age=315360000
361
+ Expires:
362
+ - Sat, 08 Feb 2025 19:15:20 GMT
363
+ P3p:
364
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
365
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
366
+ Servershortname:
367
+ - w202
368
+ X-Cnection:
369
+ - close
370
+ X-Edgeconnect-Midmile-Rtt:
371
+ - '14'
372
+ - '16'
373
+ X-Edgeconnect-Origin-Mex-Latency:
374
+ - '224'
375
+ - '636'
376
+ Content-Length:
377
+ - '66'
378
+ Content-Type:
379
+ - application/json
380
+ Date:
381
+ - Wed, 11 Feb 2015 19:15:20 GMT
382
+ Connection:
383
+ - keep-alive
384
+ body:
385
+ encoding: UTF-8
386
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":{\"Success\":true}}"
387
+ http_version:
388
+ recorded_at: Wed, 11 Feb 2015 19:15:23 GMT
389
+ - request:
390
+ method: post
391
+ uri: https://survey.qualtrics.com/WRAPI/ControlPanel/api.php
392
+ body:
393
+ encoding: UTF-8
394
+ string: Format=JSON&Request=deleteSurvey&SurveyID=SV_6rlsvOLzHEnr1CR&Token=<QUALTRICS_TOKEN>&User=brookesidedev%40brookeside.com&Version=2.3
395
+ headers:
396
+ User-Agent:
397
+ - Faraday v0.9.1
398
+ Content-Type:
399
+ - application/x-www-form-urlencoded
400
+ Accept-Encoding:
401
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
402
+ Accept:
403
+ - "*/*"
404
+ response:
405
+ status:
406
+ code: 200
407
+ message: OK
408
+ headers:
409
+ Server:
410
+ - Apache
411
+ Cache-Control:
412
+ - max-age=315360000
413
+ Expires:
414
+ - Sat, 08 Feb 2025 19:15:21 GMT
415
+ P3p:
416
+ - CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE", CP="CAO
417
+ DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
418
+ Servershortname:
419
+ - w2
420
+ X-Cnection:
421
+ - close
422
+ X-Edgeconnect-Midmile-Rtt:
423
+ - '14'
424
+ - '14'
425
+ X-Edgeconnect-Origin-Mex-Latency:
426
+ - '528'
427
+ - '935'
428
+ Content-Length:
429
+ - '54'
430
+ Content-Type:
431
+ - application/json
432
+ Date:
433
+ - Wed, 11 Feb 2015 19:15:21 GMT
434
+ Connection:
435
+ - keep-alive
436
+ body:
437
+ encoding: UTF-8
438
+ string: "{\"Meta\":{\"Status\":\"Success\",\"Debug\":\"\"},\"Result\":null}"
439
+ http_version:
440
+ recorded_at: Wed, 11 Feb 2015 19:15:24 GMT
441
+ recorded_with: VCR 2.9.3