qualtrics_api 0.0.8 → 0.0.9

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 (36) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +0 -7
  3. data/fixtures/vcr_cassettes/panel_collection_fetch_fail.yml +10 -8
  4. data/fixtures/vcr_cassettes/panel_collection_fetch_success.yml +14 -11
  5. data/fixtures/vcr_cassettes/panel_import_update_success.yml +12 -10
  6. data/fixtures/vcr_cassettes/panel_member_collection_create_fail.yml +4 -2
  7. data/fixtures/vcr_cassettes/panel_member_collection_create_success.yml +33 -26
  8. data/fixtures/vcr_cassettes/panel_member_collection_fetch_success.yml +15 -12
  9. data/fixtures/vcr_cassettes/response_export_start_success.yml +19 -14
  10. data/fixtures/vcr_cassettes/response_export_update_success.yml +12 -38
  11. data/fixtures/vcr_cassettes/survey_collection_fetch_fail.yml +4 -2
  12. data/fixtures/vcr_cassettes/survey_collection_fetch_sucess.yml +12 -10
  13. data/lib/qualtrics_api/client.rb +3 -3
  14. data/lib/qualtrics_api/panel_collection.rb +4 -4
  15. data/lib/qualtrics_api/panel_import.rb +1 -1
  16. data/lib/qualtrics_api/panel_member.rb +8 -8
  17. data/lib/qualtrics_api/panel_member_collection.rb +9 -6
  18. data/lib/qualtrics_api/request_error_handler.rb +5 -9
  19. data/lib/qualtrics_api/response_export.rb +2 -2
  20. data/lib/qualtrics_api/services/response_export_service.rb +13 -19
  21. data/lib/qualtrics_api/survey.rb +2 -4
  22. data/lib/qualtrics_api/survey_collection.rb +4 -30
  23. data/lib/qualtrics_api/url.rb +1 -1
  24. data/lib/qualtrics_api/version.rb +1 -1
  25. data/qualtrics_api.gemspec +3 -3
  26. data/spec/lib/client_spec.rb +0 -4
  27. data/spec/lib/panel_import_spec.rb +2 -2
  28. data/spec/lib/panel_member_collection_spec.rb +4 -4
  29. data/spec/lib/panel_member_spec.rb +8 -8
  30. data/spec/lib/response_export_spec.rb +1 -1
  31. data/spec/lib/services/response_export_service_spec.rb +25 -29
  32. data/spec/lib/survey_collection_spec.rb +1 -28
  33. data/spec/lib/survey_spec.rb +2 -6
  34. data/spec/spec_helper.rb +1 -1
  35. metadata +9 -10
  36. data/fixtures/vcr_cassettes/survey_collection_fetch_with_scopeId_success.yml +0 -33
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a61e69c480b7a2b20a2f64d820d0dee7ef906b30
4
- data.tar.gz: 96f38df517d7b6b061f0b110cd44c24f94b83a0f
3
+ metadata.gz: 4f8c86f14151c132a64f4c8aff0873fa87ca6793
4
+ data.tar.gz: cc34a47d547633e0bea66b2b3791ad46818fb01d
5
5
  SHA512:
6
- metadata.gz: 0460ac8586c6f6afcd345a8e7cda73a0e7d8c93fb4f34f12cc0620253aeb07ea18e42109a47ad7f3b2f73e5cdb3a02bcb68cac15042c759d7ab81e2a6f62116f
7
- data.tar.gz: 74010e87087b798bf4e80a53a719de558e7b4d707f7ed1aace8fe5da45f341d09f2cc1c70281b85b99fc45f60179a00a26248199e21f54751a2cfca3dbe0b61e
6
+ metadata.gz: 77d7d06a3bcfc5e8d9806ff0a19c7ca28006bdb8d3311360f3fdd550a1786a0d0dd18092e26016460216661e416515ad07e134f2687d6e8a6bc38f1c40e75ba7
7
+ data.tar.gz: 696d86de618b275d3da4e53fdaf65f80c3228b8f590a469f21e1f38d202d10333dd5c01d95a52fd76c9d11125414d2c74bb89874b02e79bf42d7eea2405c9fac
data/README.md CHANGED
@@ -42,13 +42,6 @@ QualtricsAPI.surveys.fetch
42
42
  # => #<QualtricsAPI::SurveyCollection:0x007fcb72cce350 ....>
43
43
  ```
44
44
 
45
- You can also add a scopeId:
46
-
47
- ```ruby
48
- QualtricsAPI.surveys.fetch(scope_id: "someOwnerIdMaybe")
49
- # => #<QualtricsAPI::SurveyCollection:0x007fcb72adaf21 ....>
50
- ```
51
-
52
45
  After you have received results, you can search for a survey by id:
53
46
 
54
47
  ```ruby
@@ -2,32 +2,34 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://co1.qualtrics.com/API/v1/panels?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
5
+ uri: https://co1.qualtrics.com/API/v3/panels
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
+ X-API-TOKEN:
11
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
10
12
  User-Agent:
11
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
12
14
  response:
13
15
  status:
14
16
  code: 200
15
- message:
17
+ message:
16
18
  headers:
17
19
  server:
18
20
  - Apache-Coyote/1.1
19
21
  content-type:
20
22
  - application/json
21
23
  content-length:
22
- - '223'
24
+ - '186'
23
25
  date:
24
- - Sun, 28 Jun 2015 21:05:57 GMT
26
+ - Sun, 22 Mar 2015 21:05:58 GMT
25
27
  connection:
26
28
  - close
27
29
  body:
28
30
  encoding: UTF-8
29
- string: '{"meta":{"status":"Error","errorMessage":"You do not have permission
31
+ string: '{"meta":{"status":"Error","errorMessage":"You do not have permission
30
32
  to access this resource.","internalErrorCode":"GS_5","errorId":"3d6a9018-3b87-4265-b662-572ad96bbe6c"},"result":null}'
31
- http_version:
32
- recorded_at: Sun, 28 Jun 2015 21:05:57 GMT
33
+ http_version:
34
+ recorded_at: Sun, 22 Mar 2015 21:05:58 GMT
33
35
  recorded_with: VCR 2.9.3
@@ -2,31 +2,34 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://co1.qualtrics.com/API/v1/panels?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
5
+ uri: https://co1.qualtrics.com/API/v3/mailinglists
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
+ X-API-TOKEN:
11
+ - 2aYeWieRoRq1cOapLnTKZuHuQc8FMq7zZvSGps0v
10
12
  User-Agent:
11
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
12
14
  response:
13
15
  status:
14
16
  code: 200
15
- message:
17
+ message:
16
18
  headers:
17
- server:
18
- - Apache-Coyote/1.1
19
19
  content-type:
20
- - application/json
20
+ - application/json; charset=utf-8
21
+ request-time:
22
+ - '742'
21
23
  content-length:
22
- - '223'
24
+ - '1329'
23
25
  date:
24
- - Sun, 28 Jun 2015 21:05:57 GMT
26
+ - Mon, 11 Apr 2016 13:26:52 GMT
25
27
  connection:
26
28
  - close
27
29
  body:
28
30
  encoding: UTF-8
29
- string: '{"result":[{"panelId":"AB_abcdefghijk","name":"Master Panel","libraryId":"GR_abcdefghijk","category":"Unassigned"}],"meta":{"status":"Success","qualtricsErrorCode":null,"errorMessage":null}}'
30
- http_version:
31
- recorded_at: Sun, 28 Jun 2015 21:05:57 GMT
31
+ string: '{"result":{"elements":[{"panelId":"AB_abcdefghijk","name":"Master Panel","libraryId":"GR_abcdefghijk","category":"Unassigned"}],"nextPage":"https://co1.qualtrics.com/API/v3/mailinglists?offset=10"},"meta":{"httpStatus":"200
32
+ - OK"}}'
33
+ http_version:
34
+ recorded_at: Mon, 11 Apr 2016 13:26:52 GMT
32
35
  recorded_with: VCR 2.9.3
@@ -2,31 +2,33 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://co1.qualtrics.com/API/v1/panels/ML_bC2c5xBz1DxyOYB/members/panelImports/PGRS_bEJLYLkqMBs8Bwx?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
5
+ uri: https://co1.qualtrics.com/API/v3/mailinglists/ML_0APx3C4rmHER6w5/contactimports/PGRS_4GvIMg79RFEPW4d
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
+ X-API-TOKEN:
11
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
10
12
  User-Agent:
11
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
12
14
  response:
13
15
  status:
14
16
  code: 200
15
17
  message:
16
18
  headers:
17
- server:
18
- - Apache-Coyote/1.1
19
19
  content-type:
20
- - application/json
21
- date:
22
- - Tue, 30 Jun 2015 18:36:33 GMT
20
+ - application/json; charset=utf-8
21
+ request-time:
22
+ - '97'
23
23
  content-length:
24
- - '85'
24
+ - '69'
25
+ date:
26
+ - Wed, 13 Apr 2016 09:18:25 GMT
25
27
  connection:
26
28
  - close
27
29
  body:
28
30
  encoding: UTF-8
29
- string: '{"result":{"status":"COMPLETED","percentComplete":100.0},"meta":{"status":"Success"}}'
31
+ string: '{"result":{"percentComplete":100.0},"meta":{"httpStatus":"200 - OK"}}'
30
32
  http_version:
31
- recorded_at: Tue, 30 Jun 2015 18:36:34 GMT
33
+ recorded_at: Wed, 13 Apr 2016 09:18:25 GMT
32
34
  recorded_with: VCR 2.9.3
@@ -2,13 +2,15 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://co1.qualtrics.com/API/v1/panels/ABCD/members?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
5
+ uri: https://co1.qualtrics.com/API/v3/mailinglists
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
+ X-API-TOKEN:
11
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
10
12
  User-Agent:
11
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
12
14
  response:
13
15
  status:
14
16
  code: 400
@@ -2,65 +2,72 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://co1.qualtrics.com/API/v1/panels?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
5
+ uri: https://co1.qualtrics.com/API/v3/mailinglists
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
+ X-API-TOKEN:
11
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
10
12
  User-Agent:
11
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
12
14
  response:
13
15
  status:
14
16
  code: 200
15
17
  message:
16
18
  headers:
17
- server:
18
- - Apache-Coyote/1.1
19
19
  content-type:
20
- - application/json
21
- date:
22
- - Tue, 30 Jun 2015 11:05:46 GMT
20
+ - application/json; charset=utf-8
21
+ request-time:
22
+ - '765'
23
23
  content-length:
24
- - '1104'
24
+ - '1334'
25
+ date:
26
+ - Tue, 12 Apr 2016 21:35:39 GMT
25
27
  connection:
26
28
  - close
27
29
  body:
28
30
  encoding: UTF-8
29
- string: '{"result":[{"libraryId":"UR_a3IUfBgXyuCHefP","panelId":"ML_bC2c5xBz1DxyOYB","name":"Test
30
- Panel","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_3DWuh7BTCbBDMrz","name":"1032
31
- test","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_801qFFVH8bOdbdH","name":"Master2015","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_8CTTM1NuWINZUO1","name":"29.X-2","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_8FZn6SlO02EfpwV","name":"29.X","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_aYrBXdYJZ5SnYqx","name":"ML_b3GT2LOMImo2Rnf","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_bJj6bKQErauewzH","name":"GRPSteacherSpring2013fixed_seperate","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_bseUhQDwAJolD1j","name":"Master
32
- Panel","category":"Unassigned"},{"libraryId":"GR_2aaKA1aGidXQtOA","panelId":"ML_eRKRb6a6Waiukap","name":"OhioSpring2015","category":"Unassigned"}],"meta":{"status":"Success","qualtricsErrorCode":null,"errorMessage":null}}'
31
+ string: '{"result":{"elements":[],"nextPage":"https://co1.qualtrics.com/API/v3/mailinglists?offset=10"},"meta":{"httpStatus":"200
32
+ - OK"}}'
33
33
  http_version:
34
- recorded_at: Tue, 30 Jun 2015 11:05:47 GMT
34
+ recorded_at: Tue, 12 Apr 2016 21:35:39 GMT
35
35
  - request:
36
36
  method: post
37
- uri: https://co1.qualtrics.com/API/v1/panels/ML_bC2c5xBz1DxyOYB/members?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
37
+ uri: https://co1.qualtrics.com/API/v3/mailinglists/ML_0APx3C4rmHER6w5/contactimports
38
38
  body:
39
- encoding: US-ASCII
40
- string: apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ&panelMembers=%5B%7B%22FirstName%22%3A%22Marcin%22%2C%22LastName%22%3A%22Naglik%22%2C%22Email%22%3A%22test%40test.com%22%7D%5D
39
+ encoding: UTF-8
40
+ string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"contacts\";
41
+ filename=\"contacts.json\"\r\nContent-Length: 68\r\nContent-Type: application/json\r\nContent-Transfer-Encoding:
42
+ binary\r\n\r\n[{\"firstName\":\"Marcin\",\"lastName\":\"Naglik\",\"email\":\"test@test.com\"}]\r\n-------------RubyMultipartPost--\r\n\r\n"
41
43
  headers:
44
+ X-API-TOKEN:
45
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
42
46
  User-Agent:
43
- - Faraday v0.8.9
47
+ - Faraday v0.9.2
44
48
  Content-Type:
45
- - application/x-www-form-urlencoded
49
+ - multipart/form-data; boundary=-----------RubyMultipartPost
50
+ Content-Length:
51
+ - '302'
46
52
  response:
47
53
  status:
48
54
  code: 200
49
55
  message:
50
56
  headers:
51
- server:
52
- - Apache-Coyote/1.1
53
57
  content-type:
54
- - application/json
55
- date:
56
- - Tue, 30 Jun 2015 11:05:47 GMT
58
+ - application/json; charset=utf-8
59
+ request-time:
60
+ - '160'
57
61
  content-length:
58
- - '203'
62
+ - '73'
63
+ date:
64
+ - Tue, 12 Apr 2016 21:35:40 GMT
59
65
  connection:
60
66
  - close
61
67
  body:
62
68
  encoding: UTF-8
63
- string: '{"result":{"importStatus":"http://co1.qualtrics.com/API/v1/panels/ML_bC2c5xBz1DxyOYB/members/panelImports/PGRS_bEJLYLkqMBs8Bwx"},"meta":{"status":"Success","qualtricsErrorCode":null,"errorMessage":null}}'
69
+ string: '{"result":{"id":"PGRS_4GvIMg79RFEPW4d"},"meta":{"httpStatus":"200 -
70
+ OK"}}'
64
71
  http_version:
65
- recorded_at: Tue, 30 Jun 2015 11:05:47 GMT
72
+ recorded_at: Tue, 12 Apr 2016 21:35:40 GMT
66
73
  recorded_with: VCR 2.9.3
@@ -1,33 +1,36 @@
1
-
2
1
  ---
3
2
  http_interactions:
4
3
  - request:
5
4
  method: get
6
- uri: https://co1.qualtrics.com/API/v1/panels/ABCD/members?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
5
+ uri: https://co1.qualtrics.com/API/v3/mailinglists/ABCD/contacts
7
6
  body:
8
7
  encoding: US-ASCII
9
8
  string: ''
10
9
  headers:
10
+ X-API-TOKEN:
11
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
11
12
  User-Agent:
12
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
13
14
  response:
14
15
  status:
15
16
  code: 200
16
- message:
17
+ message:
17
18
  headers:
18
- server:
19
- - Apache-Coyote/1.1
20
19
  content-type:
21
- - application/json
20
+ - application/json; charset=utf-8
21
+ request-time:
22
+ - '178'
22
23
  content-length:
23
- - '223'
24
+ - '2362'
24
25
  date:
25
- - Sun, 28 Jun 2015 21:05:57 GMT
26
+ - Tue, 12 Apr 2016 11:39:15 GMT
26
27
  connection:
27
28
  - close
28
29
  body:
29
30
  encoding: UTF-8
30
- string: '{ "result": [ { "rowId": "33369396", "panelMemberId": "MLRP_abcd", "firstName": "Thom", "lastName": "Yorke", "email": "thom@yorke.com", "externalDataReference": null, "embeddedData": { } } ], "meta": { "status": "Success", "qualtricsErrorCode": null, "errorMessage": null }}'
31
- http_version:
32
- recorded_at: Sun, 28 Jun 2015 21:05:57 GMT
31
+ string: '{"result":{"elements":[{"id":"ABCE","firstName":"Joe","lastName":"Doe","email":"demo@example.com","externalDataReference":"0001","embeddedData":{"subject_name":"John
32
+ Doe"},"language":null,"unsubscribed":false,"responseHistory":[],"emailHistory":[]}],"nextPage":null},"meta":{"httpStatus":"200
33
+ - OK"}}'
34
+ http_version:
35
+ recorded_at: Tue, 12 Apr 2016 11:39:17 GMT
33
36
  recorded_with: VCR 2.9.3
@@ -1,32 +1,37 @@
1
1
  ---
2
2
  http_interactions:
3
3
  - request:
4
- method: get
5
- uri: https://co1.qualtrics.com/API/v1/surveys/SV_djzgZ6eJXqnIUyF/responseExports?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ&decimalFormat=.&fileType=CSV&useLabels=false&useLocalTime=false
4
+ method: post
5
+ uri: https://co1.qualtrics.com/API/v3/responseexports
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: '{"format":"csv","surveyId":"SV_bpCTGQvjOqgd4RD","useLabels":false,"decimalSeparator":".","useLocalTime":false}'
9
9
  headers:
10
+ X-API-TOKEN:
11
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
10
12
  User-Agent:
11
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
14
+ Content-Type:
15
+ - application/json
12
16
  response:
13
17
  status:
14
18
  code: 200
15
- message:
19
+ message:
16
20
  headers:
17
- server:
18
- - Apache-Coyote/1.1
19
21
  content-type:
20
- - application/json
22
+ - application/json; charset=utf-8
23
+ request-time:
24
+ - '317'
21
25
  content-length:
22
- - '178'
26
+ - '82'
23
27
  date:
24
- - Mon, 23 Mar 2015 00:05:00 GMT
28
+ - Tue, 12 Apr 2016 10:08:28 GMT
25
29
  connection:
26
30
  - close
27
31
  body:
28
32
  encoding: UTF-8
29
- string: '{"result":{"exportStatus":"http://co1.qualtrics.com/API/v1/surveys/responseExports/ES_cwLvnQHobKfV9t3"},"meta":{"status":"Success","qualtricsErrorCode":null,"errorMessage":null}}'
30
- http_version:
31
- recorded_at: Mon, 23 Mar 2015 00:05:01 GMT
33
+ string: '{"result":{"id":"ES_to9jgploprbdnvi7uir84vq59l"},"meta":{"httpStatus":"200
34
+ - OK"}}'
35
+ http_version:
36
+ recorded_at: Tue, 12 Apr 2016 10:08:29 GMT
32
37
  recorded_with: VCR 2.9.3
@@ -2,60 +2,34 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://co1.qualtrics.com/API/v1/surveys/responseExports/ES_cwLvnQHobKfV9t3?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
5
+ uri: https://co1.qualtrics.com/API/v3/responseexports/ES_abcd
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
+ X-API-TOKEN:
11
+ - 6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
10
12
  User-Agent:
11
- - Faraday v0.8.9
12
- response:
13
- status:
14
- code: 301
15
- message:
16
- headers:
17
- location:
18
- - https://co1.qualtrics.com/API/v1/surveys/responseExports/ES_cwLvnQHobKfV9t3?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
19
- server:
20
- - BigIP
21
- content-length:
22
- - '0'
23
- date:
24
- - Mon, 23 Mar 2015 00:58:29 GMT
25
- connection:
26
- - close
27
- body:
28
- encoding: UTF-8
29
- string: ''
30
- http_version:
31
- recorded_at: Mon, 23 Mar 2015 00:58:29 GMT
32
- - request:
33
- method: get
34
- uri: https://co1.qualtrics.com/API/v1/surveys/responseExports/ES_cwLvnQHobKfV9t3?apiToken=6Wpo0Vsx1cN1kcHivCaGTz5IhOvchLrg1o4L0KOZ
35
- body:
36
- encoding: US-ASCII
37
- string: ''
38
- headers:
39
- User-Agent:
40
- - Faraday v0.8.9
13
+ - Faraday v0.9.2
41
14
  response:
42
15
  status:
43
16
  code: 200
44
17
  message:
45
18
  headers:
46
- server:
47
- - Apache-Coyote/1.1
48
19
  content-type:
49
- - application/json
20
+ - application/json; charset=utf-8
21
+ request-time:
22
+ - '19'
50
23
  content-length:
51
- - '278'
24
+ - '162'
52
25
  date:
53
- - Mon, 23 Mar 2015 00:58:30 GMT
26
+ - Tue, 12 Apr 2016 10:28:40 GMT
54
27
  connection:
55
28
  - close
56
29
  body:
57
30
  encoding: UTF-8
58
- string: '{"result":{"percentComplete":100.0,"fileUrl":"https://qualtrics-export.s3.amazonaws.com/F_bJamXsfzuGyjRWJ?Expires=1427673600&AWSAccessKeyId=AKIAI3EW3KB5A6DT2WDA&Signature=cBuebySMaFIU/St4q8idIUuxuG4%3D"},"meta":{"status":"Success","qualtricsErrorCode":null,"errorMessage":null}}'
31
+ string: '{"result":{"percentComplete":100.0,"file":"https://co1.qualtrics.com/API/v3/responseexports/ES_xxxxxxxxxxx/file"},"meta":{"httpStatus":"200
32
+ - OK"}}'
59
33
  http_version:
60
- recorded_at: Mon, 23 Mar 2015 00:58:30 GMT
34
+ recorded_at: Tue, 12 Apr 2016 10:28:42 GMT
61
35
  recorded_with: VCR 2.9.3